上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页
摘要: 序列化 JSON.stringify() 将对象转换为字符串 JSON.parse() 将字符串转换为对象类型 示例 var jsonStr = '{"name":"leinov","sex":"famle","address":"beijing"}'; var jsonObj = JSON.par 阅读全文
posted @ 2016-11-25 11:43 Dus 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 控制语句(switch) switch(name){ case '1': age = 123; break; case '2': age = 456; break; case '3': age = 789; break; } 函数 普通函数 function func(){ } 匿名函数 没有函数名 阅读全文
posted @ 2016-11-25 10:10 Dus 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 词法分析 词法分析: 1. 先分析参数; 2. 再分析变量声明; 3. 分析函数声明; 一个函数能使用的局部变量,就从上面的3步分析而来 具体步骤: 1.函数运行前的一瞬间,生成 Active Object(活动对象); 2.分析形式参数     2.1 函数 阅读全文
posted @ 2016-11-24 16:05 Dus 阅读(145) 评论(0) 推荐(0) 编辑
摘要: js生成标签 // 将标签添加到i1里面 var tag = document.createElement('input'); tag.setAttribute('type', 'text'); tag.style.fontSize = '16px' tag.style.color = 'red'; 阅读全文
posted @ 2016-11-24 15:30 Dus 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 文本框默认显示 “请输入关键字”,当鼠标点击输入框的时候, “请输入关键字”这几个字消失,移出文本框又显示出来 <!DOCTYPE html Title function Focus(){ var tag = document.getElementById('i1'); var val = tag. 阅读全文
posted @ 2016-11-24 12:02 Dus 阅读(1030) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html Title body{ margin:0; } a <! <div style="overflow: auto" adssdsd adssdsd adssdsd adssdsd adssdsd adssdsd adssdsd adssdsd adssdsd adssds 阅读全文
posted @ 2016-11-24 11:30 Dus 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.ttlsa.com/mysql/install mysql5_6/ 启动MySQL并制定套接字 mysql u user ppassword S 指定socket路径 MySQL密码丢失 1. service mysql stop 2. mysqld_safe skip 阅读全文
posted @ 2016-11-23 16:59 Dus 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 转载自: http://www.ttlsa.com/nginx/nginx php 5_5/ php下载 https://pan.baidu.com/s/1qYGo8bE 阅读全文
posted @ 2016-11-20 18:15 Dus 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 转载自 http://www.ttlsa.com/nginx/nginx install on linux/ Nginx下载 https://pan.baidu.com/s/1qXT54sO 阅读全文
posted @ 2016-11-20 18:13 Dus 阅读(152) 评论(0) 推荐(0) 编辑
摘要: css position 一般组合 relative+absolute,以relative为父元素,absolute依照relative进行定位。 opcity: 0.5 透明度 z index: 层级顺序 数字越大,就会在前面。 overflow: hidden,auto hover 注释:元素可 阅读全文
posted @ 2016-11-17 22:01 Dus 阅读(213) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页