測試浏覽器:ie8(兼容和不兼容模式),ff6。
復制代碼 代碼如下:
var chk = document.createElement("input");
chk.setAttribute("type","checkbox");
container.appendChild(chk);
chk.setAttribute("checked",true);
以上代碼在ie8兼容模式和ff6下都沒有總是,但在ie8不兼容模式下不起作用,只有在appendChild後,再設置checked的值就都起作用,如下:
復制代碼 代碼如下:
var chk = document.createElement("input");
chk.setAttribute("type","checkbox");
chk.setAttribute("checked",true);
container.appendChild(chk);
貌似以上這段話反了。