摘要: Title c1 c2 c3 c4 bnkjgjguigi b1 a1 ... 阅读全文
posted @ 2018-09-28 22:50 random_lee 阅读(141) 评论(0) 推荐(0) 编辑
摘要: document.getElementsByClassName 根据class属性获取标签集合 document.getElementsByTagName 根据标签名获取标签集合 /* 阅读全文
posted @ 2018-09-28 21:53 random_lee 阅读(371) 评论(0) 推荐(0) 编辑
摘要: absolute 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 relative 生成相对... 阅读全文
posted @ 2018-09-28 21:14 random_lee 阅读(257) 评论(0) 推荐(0) 编辑
摘要: Title 阅读全文
posted @ 2018-09-28 21:12 random_lee 阅读(5930) 评论(0) 推荐(0) 编辑
摘要: Title //js中有两种for循环 //第一种循环的是下标和key //for循环产生下标 不支持字典操作 阅读全文
posted @ 2018-09-28 21:12 random_lee 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 字符串转json对象 方法一:var json = eval('(' + str + ')'); 方法二:return JSON.parse(str); json对象转字符串 JSON.stringify(jsonobj); //可以将json对象转换成字符串 例如: JSON字符串:var str 阅读全文
posted @ 2018-09-28 20:32 random_lee 阅读(14786) 评论(0) 推荐(0) 编辑