摘要:
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... 阅读全文
摘要:
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])... 阅读全文
摘要:
1 // 把所有方法封装到一个对象里面,充分考虑兼容写法 2 var EventUtil = { 3 // 添加DOM事件 4 addEvent: function(element, type, handler) { 5 if(element.addEventListener) { //DOM2级 6 element.addEventListener(ty... 阅读全文