テキストエリアを動的に作成しています。その後、ページ制限に達するまで入力したいのですが、テキストエリアへの入力を禁止するにはどうすればよいですか? 誰でも助けることができますか?
$("#page1").click( function (event,data) {
var newTextAreaDiv = $(document.createElement('div'))
.attr("id", 'TextAreaDiv' + numTextAreaCounter);
newTextAreaDiv.html('<textarea rows="1" id= "textbox' +
numTextAreaCounter+ ' " '+'style="display:block; max-width:50%;
max-height:50%;height:50px;width:100px; ></textarea>');
newTextAreaDiv.className='notes_textarea';
newTextAreaDiv.appendTo("#page_right");
$("#notesfullpage").trigger('create');
numTextAreaCounter++;
});