| onsubmit | ใช้กำหนดให้ function ทำงานเมื่อ form ถูก submit |
|---|
property:onsubmit = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ form ถูก submit
example:var tagTable = document.getElementById ( "bamboo" ); tagTable.onsubmit = function() { alert ( "form be submitted" ); }