ใน jQuery เวอร์ชั่น 1.4 มี event ที่ชื่อ live และ die ที่ทำให้เราสามารถกำหนด หรือยกเลิก event ต่างๆ ให้กับ elements ที่ถูกดึงมาแสดงด้วย ajax หรือที่เรียกว่าข้อมูลจาก xhr ได้
ดูตัวอย่างประกอบ
div id=i_content
div id=i_debug
เมื่อเราคลิกที่ div id=i_content สีเหลืองอ่อน
ก็จะมีการนำ span id=i_span สีฟ้า และข้อความว่า message มาแสดงใน div สีเหลืองอ่อน
ด้วยคำสั่ง
1 2 3 4 | $( "#i_content" ).click( function (){ var xhrData = "<span id='i_span'>message</span>" $( "#i_content" ).html(xhrData); }); |
ถ้าเราต้องการเรียก span id=i_span สีฟ้า นั้นมาใช้งานอีกที เช่น ต้องการนำข้อความใน span id=i_span สีฟ้า มาแสดงใน div id=i_debug สีแดงอ่อน
ด้วยคำสั่งข้างล่าง ต่อไปนี้ ไม่สามารถทำได้
1 2 3 | $( "span#i_span" ).click( function (){ $( "#i_debug" ).html($( "span#i_span" ).html()); }); |
แต่ด้วยคุณสมบัติของ event live ของ jQuery 1.4 สามารถทำได้
ด้วยคำสั่งต่อไปนี้
1 2 3 | $( "span#i_span" ).live( 'click' , function (){ $( "#i_debug" ).html($( "span#i_span" ).html()); }); |
และสามารถยกเลิกความสามารถนี้ด้วย die event
ด้วยคำสั่งต่อไปนี้
1 | $( "span#i_span" ).die( 'click' ); |
โค้ดตัวอย่าง
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < head > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < title >jquery get object from ajax</ title > < style type = "text/css" > #i_content{ background-color:#FFC; width:200px; height:35px; display:block; } #i_debug{ background-color:#FCC; width:200px; height:35px; display:block; } #i_span{ background-color:#6CF; } </ style > </ head > < body > < script type = "text/javascript" src = "js/jquery-1.4.1.min.js" ></ script > < script type = "text/javascript" > $(function(){ $("#i_content").click(function(){ var xhrData = "< span id = 'i_span' >message</ span >" $("#i_content").html(xhrData); }); $("span#i_span").click(function(){ $("#i_debug").html("I click the span id i_span"); }); $("#cancel_live").click(function(){ $("span#i_span").die('click'); $("#i_debug").html(""); }); $("#use_live").click(function(){ $("span#i_span").live('click',function(){ $("#i_debug").html($("span#i_span").html()); }); }); }); </ script > div id=i_content < br /> < div id = "i_content" ></ div > < br /> div id=i_debug < br /> < div id = "i_debug" ></ div > < br /> < button id = "use_live" >Use live() event</ button > < button id = "cancel_live" >Use die() event</ button > </ body > </ html > |
อ่านเพิ่มเติม
https://api.jquery.com/