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