| onmouseup | ใช้กำหนดให้ function ทำงานเมื่อ มีการปล่อยเมาส์ที่คลิกลง checkbox |
|---|
property:onmouseup = function;
return type:void
content:ใช้กำหนดให้ function ทำงานเมื่อ มีการปล่อยเมาส์ที่คลิกลง checkbox
example:var tagCheckbox = document.getElementById ( "bamboo" ); tagCheckbox.onmouseup = function() { alert ( "checkbox be clicked mouse release" ); }