上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 45 下一页
摘要: 1 var timeout = null;//onresize触发次数过多,设置定时器 2 window.onresize = function () { 3 clearTimeout(timeout); 4 timeout = setTimeout(function () { window.location.reload(); }, 100);//页面大小变化,重新加载页... 阅读全文
posted @ 2018-05-11 09:53 前端极客 阅读(936) 评论(0) 推荐(0) 编辑
摘要: 1 // 拖动变换顺序 2 var moveItem=document.getElementsByClassName('layui-timeline-item'); 3 dragElement=null; 4 for(var i=0;i<moveItem.length;i++){ 5 moveItem[i].addEventListene... 阅读全文
posted @ 2018-05-10 17:27 前端极客 阅读(2273) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 html5_2.html 5 96 97 98 99 100 101 102 文件上传 103 104 105 106 文件名 107 大小 108 状态 109 ... 阅读全文
posted @ 2018-05-04 16:46 前端极客 阅读(2174) 评论(0) 推荐(0) 编辑
摘要: ajax提交data类型 一、问题来源 今天使用ajax时,发现get传data时,传递json字符串时传不过去参数,所以做了一些实验测试ajax的get和post的传递data时的不同。 二、概念 ajax有三种传递传递data的方式: json格式 json字符串格式 标准参数模式 1.json 阅读全文
posted @ 2018-05-03 16:34 前端极客 阅读(63456) 评论(1) 推荐(9) 编辑
摘要: 1 addCookieBtn.addEventListener('click',function () { 2 document.cookie='imooc=www.imooc.com;expires=2016-07-20 10:10:10'; 3 content.innerHTML='cookie写入完成' 4 }) 5 var getCookieBtn=docume... 阅读全文
posted @ 2018-05-03 09:13 前端极客 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 1 // 比较两个对象是否一样 2 var xm={ 3 age:18, 4 score:4 5 } 6 var xh={ 7 age:18, 8 score:4 9 }; 10 function equalObjs(a,b){ 11 for(var p in a){ 12 if(a[p]!==b[p]) return f... 阅读全文
posted @ 2018-05-03 09:12 前端极客 阅读(194) 评论(0) 推荐(0) 编辑
摘要: Infinity与null计算时,null会转成0,等同于与0的计算。 null * Infinity // NaN null / Infinity // 0 Infinity / null // Infinity Infinity与undefined计算,返回的都是NaN。 undefined + 阅读全文
posted @ 2018-05-03 08:12 前端极客 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 1 var myTextarea = document.getElementById('editor'); 2 var CodeMirrorEditor = CodeMirror.fromTextArea(myTextarea, { 3 mode: "text/javascript", //高亮语言 4 lineNumbers: true,//... 阅读全文
posted @ 2018-05-02 14:50 前端极客 阅读(953) 评论(0) 推荐(0) 编辑
摘要: 1 layui.use(['table','layer'],function(){ 2 var $=layui.$, 3 table=layui.table, 4 layer=layui.layer; 5 function getParam(){ 6 C1=window.location.href.split('?'... 阅读全文
posted @ 2018-05-02 13:23 前端极客 阅读(3975) 评论(0) 推荐(0) 编辑
摘要: stringObject.split(separator,howmany) 参数描述 separator 必需。字符串或正则表达式,从该参数指定的地方分割 stringObject。 howmany 可选。该参数可指定返回的数组的最大长度。如果设置了该参数,返回的子串不会多于这个参数指定的数组。如果没有设置该参数,整个字符串都会被分割,不考虑它的长度。 1 //得到url中的参数... 阅读全文
posted @ 2018-05-02 11:39 前端极客 阅读(10502) 评论(0) 推荐(1) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 45 下一页