
学习笔记
托马斯小火车喷雾又喷烟,一直喷,喷喷喷.
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
今天是周日
今天是周日,先写篇博客占个位置。原创 2023-04-02 15:51:26 · 143 阅读 · 0 评论 -
jQuery 笔记
There is no nutrition in the blog content. After reading it, you will not only suffer from malnutrition, but also impotence.The blog content is all parallel goods. Those who are worried about being cheated should leave quickly.原创 2023-03-14 07:33:10 · 115 阅读 · 1 评论 -
去掉input历史记录
There is no nutrition in the blog content. After reading it, you will not only suffer from malnutrition, but also impotence.The blog content is all parallel goods. Those who are worried about being cheated should leave quickly.原创 2023-03-11 16:05:23 · 680 阅读 · 0 评论 -
Spirng 实战 第六版 学习笔记
There is no nutrition in the blog content. After reading it, you will not only suffer from malnutrition, but also impotence.The blog content is all parallel goods. Those who are worried about being cheated should leave quickly.原创 2023-03-05 12:20:22 · 108 阅读 · 0 评论 -
Spring 实战 第六版 学习笔记
There is no nutrition in the blog content. After reading it, you will not only suffer from malnutrition, but also impotence.The blog content is all parallel goods. Those who are worried about being cheated should leave quickly.原创 2023-03-05 12:19:18 · 389 阅读 · 0 评论 -
Spring 实战 第六版 学习笔记
There is no nutrition in the blog content. After reading it, you will not only suffer from malnutrition, but also impotence.The blog content is all parallel goods. Those who are worried about being cheated should leave quickly.原创 2023-03-05 12:09:09 · 405 阅读 · 0 评论 -
JavaScript 隔一秒随机生成一种背景色
JavaScript 隔一秒随机生成一种背景色<html> <head> <meta charset="UTF-8"> <style> div { position: absolute; width: 100px; height: 100px; top: 30px; left: 40px; ...原创 2020-06-15 16:06:39 · 32919 阅读 · 1 评论 -
JavaScript 生成1到10随机数
JavaScript 生成1到10随机数var random = Math.floor(Math.random() * 10 + 1);console.log(random); // 7原创 2016-07-06 13:28:07 · 52962 阅读 · 0 评论 -
JavaScript 获取中文星期
JavaScript 获取中文星期/** * 功能:获取中文星期 * 参数:date日期类型 */function getChineseWeek(date) { if (!(date instanceof Date)) { return date + " not a Date"; } var weekName = new Array ("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"...原创 2016-05-21 07:57:25 · 142315 阅读 · 0 评论 -
javascript Date 操作日期
javascript Date 操作日期/** * 功能:获取中文星期 * 参数:date日期类型 */function getChineseWeek(date) { var week = date.getDay(); var chineseWeek = ""; switch(week) { case 0: chineseWeek = "星期日"; break; case 1: chineseWeek = "星期一"; ...原创 2016-11-16 08:08:09 · 51799 阅读 · 0 评论 -
学习笔记 JavaScript Array 数组 方法 函数
学习笔记 JavaScript Array 数组 方法 函数<html> <head> <script> var num = [1, 2, 3, 4, 5, 6, 7, 5, 4, 3, 2, 1]; console.log(num.indexOf(4)); // 3 console.log(num.lastIndexOf(3)...原创 2020-06-10 10:00:39 · 31277 阅读 · 0 评论 -
学习笔记 JavaScript 数组Array 比较大小方法 比较大小函数
学习笔记 JavaScript 数组Array 比较大小方法 比较大小函数<html> <head> <script> var num = [7, 10, 0, 19, 3]; console.log(num.sort()); // [0, 10, 19, 3, 7] console.log(num.sort(compare)); //[0, 3, 7,...原创 2020-06-09 15:34:03 · 32374 阅读 · 0 评论 -
javascript 学习笔记
javascript 学习笔记<html> <head> <script> function test() { var a = 0.1; var b = 0.2; //alert(a + b); console.log(a + b); var c = 0.1; var d = 0.7; //alert(c +...原创 2016-11-18 07:46:12 · 25435 阅读 · 0 评论 -
css 布局 三列
css 布局 三列<!DOCTYPE><html><head> <style> #container { border: 5px solid blue; height: 400px; width: 400px; margin: 0 auto; }...原创 2016-08-01 09:43:06 · 14158 阅读 · 0 评论 -
css 布局 两列
css 布局 两列<!DOCTYPE><html><head> <style> #container { border: 5px solid blue; height: 400px; width: 400px; margin: 0 auto; ...原创 2016-11-17 08:09:31 · 25962 阅读 · 0 评论 -
使用定位和负值空白边让设计居中
使用定位和负值空白边让设计居中<!DOCTYPE><html><head> <style> #a { border: 1px solid red; height: 300px; width: 300px; left: 50%; ...原创 2020-06-08 08:15:36 · 31365 阅读 · 0 评论 -
使用自动空白边让设计居中
使用自动空白边让设计居中<!DOCTYPE><html><head> <style> #a { border: 1px solid red; height: 300px; width: 300px; margin: 0 auto; ...原创 2020-06-08 08:14:24 · 31126 阅读 · 0 评论 -
CSS 图像映射 远距离翻转
CSS 图像映射 远距离翻转<!DOCTYPE html><html> <head> <style> div { width: 750px; height: 150px; box-shadow: 3px 3px 5px gray; } ul { list-style: none; } a { text-...原创 2016-11-17 08:07:41 · 26877 阅读 · 0 评论 -
CSS 图像映射 双边框
CSS 图像映射 双边框<!DOCTYPE html><html> <head> <style> div { width: 750px; height: 150px; box-shadow: 3px 3px 5px gray; } ul { list-style: none; } li a...原创 2016-11-16 08:09:19 · 15002 阅读 · 0 评论 -
CSS 图像映射
CSS 图像映射<!DOCTYPE html><html> <head> <style> div { width: 750px; height: 150px; box-shadow: 3px 3px 5px gray; } ul { list-style: none; } li a { displ...原创 2017-02-03 13:37:08 · 27150 阅读 · 0 评论 -
学习笔记 css水平导航
学习笔记 css水平导航<!DOCTYPE html><html> <head> <style> ul { margin: 0px; padding: 0px; list-style: none; width: 580px; float: left; background: url(mainNavBg.gif) repeat-x; } ul li { float: left; }.原创 2016-10-27 08:40:13 · 15076 阅读 · 0 评论 -
学习笔记 css垂直导航
学习笔记 css垂直导航<!DOCTYPE html><html> <head> <style> ul { margin: 0px; padding: 0px; list-style: none; } li a{ display: block; width: 200px; height: 39px; line-height: 39px; text-decoration:原创 2020-06-03 08:17:29 · 31558 阅读 · 0 评论 -
学习笔记 css 锚伪类
学习笔记 css 锚伪类<!DOCTYPE html><html> <head> <style> .tip span{ display: none; } .tip:hover span { display: block; position: absolute; top: 30px; left: 160px; padding: 1px 1px; border: 1px solid red原创 2020-06-02 12:24:52 · 40656 阅读 · 0 评论 -
学习笔记 css border-radius
学习笔记 css border-radius<!DOCTYPE html><html> <head> <style> div { padding: 10px; background: #effce7; width: 350px; border-radius: 10px; left: 20px; top: 20px; position: absolute; } div h原创 2020-06-01 15:41:39 · 31318 阅读 · 0 评论 -
学习笔记 css background 图片
学习笔记 css background 图片<html> <head> <style> /* body { background: #ccc url(a.png) no-repeat; } */ #branding { width: 400px; height: 200px; background: url(a.png) no-repeat left center; border原创 2020-06-01 15:39:19 · 40551 阅读 · 0 评论 -
学习笔记 css clear: both
学习笔记 css clear: both<html> <head> <style> .news { background-color: gray; border: solid 1px black; } .news img { float: left; } .news p { ...原创 2020-06-01 11:51:54 · 31259 阅读 · 0 评论 -
学习笔记 css overflow
学习笔记 css overflow<html> <head> <style type="text/css"> #v { background-color:#00FFFF; width:100px; height:80px; float: left; margin: 5px; } ...原创 2020-06-01 10:06:02 · 31351 阅读 · 0 评论 -
学习笔记 css position absolute relative 区别
学习笔记 css position absolute relative 区别相对定位元素相对于他的起点进行移动,可以设置水平或垂直位置。在使用相对定位时,无论是否进行移动,元素任然占据原来的空间。<html> <head> <style> #div1 { width: 100px; height: 100px; background-col...原创 2020-05-31 22:46:42 · 31285 阅读 · 0 评论 -
学习笔记 JavaScript
学习笔记 JavaScript<html> <head> <style> label { display: block; } fieldset { border: 0; } </style> <script> function focusLabels() { var labels = document.getElementsByTagName("label");原创 2020-05-28 12:04:59 · 31285 阅读 · 0 评论 -
学习笔记 JavaScript 动画 加速
学习笔记 JavaScript 动画 加速效果代码中用到的图片<html> <head> <style> #imageDiv { position: absolute; top: 50px; left: 65px; width: 100px; height: 100px; border: 1px s...原创 2020-05-20 12:18:23 · 31421 阅读 · 0 评论 -
学习笔记 JavaScript 动画
学习笔记 JavaScript 动画结果代码里用到的图片<html> <head> <style> #imageDiv { height: 100px; width: 100px; top: 50px; left: 60px; position: absolu...原创 2020-05-19 16:42:28 · 31269 阅读 · 0 评论 -
学习笔记
学习笔记<html> <head> <style> </style> <script> window.onload = function() { var _p = document.getElementsByTagName("p")[0]; _p.style.position = "absol...原创 2016-11-17 08:10:42 · 32826 阅读 · 0 评论 -
CSS 内联样式 外联样式 嵌套样式
CSS 内联样式 外联样式 嵌套样式内联样式<p style="color: pink;"></p>外联样式<link href="CSS文件" rel="stylesheet" type="text/css"></link>嵌套样式在HTML界面<head>里面写CSS代码<style type="text/css...原创 2016-07-07 08:21:45 · 52667 阅读 · 0 评论 -
但行好事莫问前程 学习笔记
但行好事莫问前程 学习笔记<html> <head> <style> body { font-family: "Helvetica","Arial",sans-serif; background-color: #fff; color: #000; } table { margin: auto; /*元素水...原创 2020-05-18 12:47:59 · 31471 阅读 · 0 评论 -
学习笔记 CSS JavaScript html
学习笔记 CSS JavaScript html<html> <head> <style> #app { position: absolute; top: 50px; left: 80px; height: 200px; width: 300px; border: solid 1px; border-color: pink } #red { background-color:原创 2020-05-15 17:05:49 · 31187 阅读 · 0 评论 -
学习笔记 JavaScript
学习笔记 JavaScript<html> <head> <style> #p1 { color: grey; font-family: 'Arial',sans-serif } </style> <script> window.onload = function() { var _p2 = document.getElementById("p2"); //alert(_p2.原创 2020-05-15 11:05:23 · 31143 阅读 · 0 评论 -
但行好事 莫问前程 学习笔记
但行好事 莫问前程 学习笔记<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN""http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="content-type" content="text/htm原创 2020-05-13 17:13:07 · 31237 阅读 · 0 评论