上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页
摘要: 先用密码登陆 然后输入 use mysql; 回车 再输入 update mysql.user set password=PASSWORD(要改的密码) where user=’root’ ; 回车 重启 登陆一下 阅读全文
posted @ 2016-10-14 11:01 哔哩哔哩干杯 阅读(119) 评论(0) 推荐(0) 编辑
摘要: a:focus { outline:none; -moz-outline:none;} a标签点击不会出现虚线 @media (min-width:768px){.container{width:100%}}@media (min-width:992px){.container{width:100% 阅读全文
posted @ 2016-10-10 10:48 哔哩哔哩干杯 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 圆角边框 border-radius 边框阴影 box-shadow: 10px 10px 5px #888888; 图片边框 ie不支持 不推荐使用 图片平铺 -moz-border-image:url(/i/border.png) 30 30 round; /* Old Firefox */-w 阅读全文
posted @ 2016-09-25 12:29 哔哩哔哩干杯 阅读(266) 评论(0) 推荐(0) 编辑
摘要: <style> #focus{width:500px;height:200px;overflow:hidden;/*用一个div把图片包含设置超出范围隐藏*/} </style> <div id="focus"> <img src="xx.jpg" width="500" height="200"> 阅读全文
posted @ 2016-09-23 13:37 哔哩哔哩干杯 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 通用:onclick 鼠标单击ondblclick 鼠标双击onmouseover 鼠标放上onmouseout 鼠标离开onmousemove 鼠标移动表单:onchang 表单的值改变onblur 失去焦点onfocus 获得焦点onselect 选中 阅读全文
posted @ 2016-09-23 10:24 哔哩哔哩干杯 阅读(130) 评论(0) 推荐(0) 编辑
摘要: <input id="btn" type="submit" value="确定" disabled="disabled" /> <span id="daojishi">10</span> <script type="text/javascript"> window.setTimeout("YanCh 阅读全文
posted @ 2016-09-22 16:35 哔哩哔哩干杯 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 查找元素 根据id找 document.getElementById("b"); 根据class找 document.getElementsByClassName("aa") class返回的是数组,需要一个变量来接受使用 根据name找,用于表单元素 document.getElementsByN 阅读全文
posted @ 2016-09-22 16:17 哔哩哔哩干杯 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1.window.open("第一部分","第二部分","第三部分","第四部分");特征参数:第一部分:写要打开的页面地址第二部分:打开的方式,_blank 是在新窗口打开 _self第三部分:控制打开的窗口,可以写多个,用空格隔开 toolbar=no新打开的窗口无工具条 menubar=no无 阅读全文
posted @ 2016-09-22 11:10 哔哩哔哩干杯 阅读(105) 评论(0) 推荐(0) 编辑
摘要: //使用函数 //弄清函数功能:给一个天数,返回该天的桃子数量 //递归的本质:函数自己调自己 function ShuLiang(n) { if(n==6) { return 1; } //第n天的数量 = (下一天的桃子数量+1)*2; var sl = (ShuLiang(n+1)+1)*2; 阅读全文
posted @ 2016-09-20 15:37 哔哩哔哩干杯 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 四要素:1.返回类型 2.函数名 3.参数列表 4.函数体 函数类型: 1.无参数函数 2.有参数函数 3.有返回值的函数 日期时间函数(需要用变量调用):var b = new Date(); //获取当前时间b.getTime() //获取时间戳b.getFullYear() //获取年份b.g 阅读全文
posted @ 2016-09-20 10:43 哔哩哔哩干杯 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页