`
文章列表
if(n.nodeType)==1 //NodeType list Element 1 Text 3 Document 9 Comment 8 DocumentFragment 11 Attr 2 if (!window.Node) { var Node = { ELEMENT_NODE: 1, ATTRIBUTE_NODE: 2, TEXT_NODE: 3, ...
navigator对象 8.2浏览器的检测方式 1.对象/特征检测法   eg.if(document.getElementById){    //some code }else{   //some code } 如果document.getElementById不被支持,则返回undefined,转成boolean,则就是false,所以可以用些方法来检测. 2.user-agent字符串检测法. userAgent属性. var sUserAgent=navigator.userAgent; 返回一些基本的字符串.不同浏览器,不同的. 下面为一些基本的..仅供参考  ...
[size=large][/size]定位 //for ie oDiv.onclick=function(){ var oEvent=window.event; } //for Dom oDiv.onclick=function(){   var oEvent=arguments[0]; } //可直接命名参数,访问就更方便 oDiv.onclick=function(oEvent){ //for some code;   } ie事件的一些属性及方法 altKey   true代表按下alt键,false代表没有; button 0 未按下按纽        1 按下左键;        ...
Global site tag (gtag.js) - Google Analytics