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