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