테스트 브라우저: ie8(호환 및 비호환 모드), ff6.
var chk = document.createElement("input ");
chk.setAttribute("type","checkbox");
container.appendChild(chk);
chk.setAttribute("checked",true);
위의 코드는 ie8 호환 모드 및 ff6에서 항상 작동하지 않지만 ie8 비호환 모드에서는 작동하지 않습니다. 다음과 같이 appendChild 이후에 체크된 값을 설정하면 작동합니다.
var chk = document.createElement("input")
chk.setAttribute ("type ","checkbox");
chk.setAttribute("checked",true);
container.appendChild(chk)
위 문단은 반전.