私のhtmlページにtexteareがあり、それにいくつかのコンテンツを書き込みます。一部のコンテンツは変更できますが、一部は変更できません。
<html>
<body>
<div class="text">
<textarea cols="50" rows="4" name="msg_content" id="msg_content" readonly="readonly">
Hi, I am the contents that can be modified.
Hi, the url cannot be modified.
http://www.google.com
</textarea>
</div>
</html>
ご覧のとおり、textareaのプロパティの1つを読み取り専用にしましたが、この場合、コンテンツ全体を変更することはできません。
よろしくお願いします。