1 if(<特性>){ 2 //使用特性 3 }
1 //IE5.0之前的版本不支持document.getElementById(),但可以使用非标准的document.all() 2 function getElement(id){ 3 if(document.getElementById){ 4 return document.getElementById(id); 5 } 6 else if(document.all){ 7 return document.all[id]; 8 } 9 else{ 10 throw new Error("No way to retrieve element!"); 11 } 12 }
1 if(someNode.nodeType == Node.ELEMENT_NODE){ 2 ...... 3 } 4 5 //最好使用数值: 6 if(someNode.nodeType == 1){ 7 ...... 8 }
1 try{ 2 //可能会导致错误的代码 3 } 4 catch(error){ 5 //处理错误的代码 6 }
1 var xhr = new XMLHttpRequest();