摘要: 1 function whatBrowser() { 2 3 document.Browser.Name.value=navigator.appName; 4 5 document.Browser.Version.value=navigator.appVersion; 6 7 document.Browser.Code.value=navigator.appCod... 阅读全文
posted @ 2018-03-11 18:08 前端极客 阅读(3893) 评论(0) 推荐(0) 编辑
摘要: 1 function clone() { 2 var buf; 3 if(Obj instanceof Array){ 4 buf=[]; 5 var i=Obj.length; 6 while(i--){ 7 buf[i]=clone(Obj[i])... 阅读全文
posted @ 2018-03-11 17:59 前端极客 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 1 // 把所有方法封装到一个对象里面,充分考虑兼容写法 2 var EventUtil = { 3 // 添加DOM事件 4 addEvent: function(element, type, handler) { 5 if(element.addEventListener) { //DOM2级 6 element.addEventListener(ty... 阅读全文
posted @ 2018-03-11 17:25 前端极客 阅读(763) 评论(0) 推荐(0) 编辑