我需要保存textarea的内容。我试过onkeyup,它运行正常,但它非常重,一些性能问题和onchange和onpropertychange对我不起作用。谁能提出一些替代方案。
function setMsgSession(){
var newMsg = $('#newComposeMessage').val();
alert(newMsg);
}
<h:inputTextarea id="newComposeMessage" pt:placeholder="Message" pt:maxlength="29000" rows="10" queryDelay="750" minQueryLength="4" onpropertychange="setMsgSession()" >