| onfocus | ใช้กำหนดให้ function ทำงานเมื่อ reset ได้รับ focus |
|---|
property:onfocus = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ reset ได้รับ focus
example:var tagReset = document.getElementById ( "bamboo" ); tagReset.onfocus = function() { alert ( "reset gain focus" ); }