1. js는
에 대한 readOnly 속성을 설정합니다.
var cObj = document.getElementById("content");
cObj.setAttribute("readOnly",'true');
2. js는 readOnly 속성을 제거합니다
var cObj = document.getElementById("content");
cObj.removeAttribute("readOnly");
참고: readOnly의 대문자 사용에 주의하세요! ! !