摘要: 类数组 <script type="text/javascript"> var obj={ "0":'a', '1':'b', 'length':2, 'splice':Array.prototype.splice, 'push':Array.prototype.push } Array.proto 阅读全文
posted @ 2020-03-08 14:00 尚宇园 阅读(117) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 13:59 尚宇园 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 浏览器内核 1 五大主流浏览器 2 1.IE 内核trident 3 2.Chrome webkit/blink 4 3.Safari webkit 5 4.firefox Gecko 6 5.Opera presto js封装方法 //查看滚动条滚动的距离 function getScrollOf 阅读全文
posted @ 2020-03-08 13:58 尚宇园 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 页面自动滚动 <div style="width: 50px;height:50px;border-radius: 50%;background: red;position: fixed;bottom: 300px;right: 300px; text-align: center;line-heig 阅读全文
posted @ 2020-03-08 13:55 尚宇园 阅读(147) 评论(0) 推荐(0) 编辑
摘要: es5严格模式 1 <script type="text/javascript"> 2 "use strict"; 3 function test(){ 4 console.log(arguments.callee); 5 } 6 test(); 7 </script> try...catch <s 阅读全文
posted @ 2020-03-08 13:51 尚宇园 阅读(152) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 13:48 尚宇园 阅读(164) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 13:45 尚宇园 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 继承 <script type="text/javascript"> Father.prototype.name="wangxinngyu"; function inherit(Target,Origin){ function F(){} F.prototype=Origin.prototype; 阅读全文
posted @ 2020-03-08 13:43 尚宇园 阅读(98) 评论(0) 推荐(0) 编辑
摘要: <!-- 当用户电脑么有相应的字体,会强制用户下载该字体 @font-face指令制作一个新字体 iconfont网站制作图表 @font-face{ font-family: "good night"; src: url("./../../数据库/【开开】晚安体.ttf"); } p{ font- 阅读全文
posted @ 2020-03-08 13:29 尚宇园 阅读(136) 评论(0) 推荐(0) 编辑
摘要: <!-- ##简单选择器 1.ID选择器 2.元素选择器 3.类选择器 4.通配符选择器*{} 5.属性选择器 [元素名="#"]{} 6.伪类选择器 :hover 或者a:hover 鼠标悬停时的状态 # active{} a:active{} 鼠标按下的元素有效果(通常用在a元素中)## lin 阅读全文
posted @ 2020-03-08 13:28 尚宇园 阅读(92) 评论(0) 推荐(0) 编辑