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