1. js は
の readOnly 属性を設定します。
var cObj = document.getElementById("content");
cObj.setAttribute("readOnly",'true');
2. js は readOnly 属性
var cObj = document.getElementById("content");
cObj.removeAttribute("readOnly");
注: readOnly の大文字化に必ず注意してください。 ! !