[JavaScript] document.all 을 document.getElementById으로 수정
Uncaught TypeError: Cannot read property 'style' of undefined 라고 에러가 뜨길래 찾아보니깐 all은 ie만 사용가능한 비표준 명령어라서 getElementById 를 사용하란다. 만약 document.all["test"].value = none; 이었으면 document.getElementById("test").value = none; 으로 수정할 것!