測試瀏覽器: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);
看似以上這段話反了。