FF和IE之间DOM的区别
1.向表中追加行:
?? IE\FF:IE允许tr元素增加到tbody中,而不是直接增加到table中
if(document.uniqueID){//Internet Explorervar radioButtion = document.createElement("<input type='radio' name='radioButtion' value ='checked'>");}else{//Standards Compliantvar readioButtion = document.createElement("input");readioButtion.setAttribute("type","radio");readioButtion.setAttribute("name","radioButtion");readioButtion.setAttribute("value","checked");}
?
?