摘要:
var test=[1,2,1,2,3,4,5,6,7]; 1.remove test.remove(1) 位置 test.remove(-2) test.remove(2,3) 2 delete delete test[3] 3 splice test.splice(2,1,'ttt'); 开始的 阅读全文
摘要:
iframe作用: 1:页面部分刷新(iframe也是一个window,html是完整的不是部分html片段) 2:跨域 3:父子window通信 iframe1.window.xx=xx;parent.xx=xx;... 阅读全文
摘要:
这个功能可以进行传参,还可以解决ajax无法前进和倒退的问题 首先,history新增的两个方法history.replaceState()和history.pushState()方法属于HTML5浏览器新增的属性,所以IE9以下的是不支持的。 直接上代码: history.replaceState 阅读全文
摘要:
ajax和iframe https://segmentfault.com/a/1190000011967786 ajax和iframe的区别 1.都是局部刷新 2.iframe是同步的,而ajax是异步的 3ifame可会退,ajax不可会退 4i.iframe可跨域,ajax不可跨域 阅读全文