| onkeypress | ใช้กำหนดให้ function ทำงานเมื่อ มีการกดปุ่มที่ textarea |
|---|
property:onkeypress = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ มีการกดปุ่มที่ textarea
example:var tagTextArea = document.getElementById ( "bamboo" ); tagTextArea.onkeypress = function() { alert ( "textarea be keypressed" ); }