jQuery如何將onClick事件綁定到動態添加的HTML元素我想將onClick事件綁定到我用jQuery動態插入的元素。但它從不運行綁定函數。如果您能指出這個示例不起作用的原因,以及如何讓它正常運行,我會很高興的:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da"> <head> <title>test of click binding</title><script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script type="text/javascript"> jQuery(function(){ close_link = $('<a class="" href="#">Click here to see an alert</a>'); close_link.bind("click", function(){ alert('hello from binded function call'); //do stuff here... }); $('.add_to_this').append(close_link); }); </script> </head> <body> <h1 >Test of click binding</h1> <p>problem: to bind a click event to an element I append via JQuery.</p> <div class="add_to_this"> <p>The link is created, then added here below:</p> </div> <div class="add_to_this"> <p>Another is added here below:</p> </div> </body> </html>
jQuery如何將onClick事件綁定到動態添加的HTML元素
一只名叫tom的貓
2019-07-02 10:17:52