.undelegate() .undelegate( selector, eventType ) .undelegate( selector, eventType, handler ) .undelegate( selector, events ) .undelegate( namespace )
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> button { margin:5px; } button#theone { color:red; background:yellow; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(document).ready(function(){ function aClick() { $("div").show().fadeOut("slow"); } $("#bind").click(function () { $("body").delegate("#theone", "click", aClick) .find("#theone").text("Can Click!"); }); $("#unbind").click(function () { $("body").undelegate("#theone", "click", aClick) .find("#theone").text("Does nothing..."); }); }); </script> </head> <body> <button id="theone">Does nothing...</button> <button id="bind">Bind Click</button> <button id="unbind">Unbind Click</button> <div style="display:none;">Click!</div> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท