求大神帮让以次代码兼容IE6/IE7
求大神帮让以下代码兼容IE6/IE7
求大神帮让以上代码兼容IE6/IE7
------解决方案--------------------
后写的不能生效
加一句
//*-------为每个radio标签添加id,为每个label标签添加for属性-------
window.onload = function(){
var theWrapDiv = document.getElementById('carList');
var theLabel = theWrapDiv.getElementsByTagName("label");
var theInput = theWrapDiv.getElementsByTagName("input");
for(i = 0; i < theInput.length; i ++){
theInput[i].id = "state" + i;
}
for(j = 0; j < theLabel.length; j ++){
theLabel[j].setAttribute("for","state" + j);
}
}
求大神帮让以上代码兼容IE6/IE7
------解决方案--------------------
后写的不能生效
加一句
theWrapDiv.innerHTML = theWrapDiv.innerHTML;就可以了