如何使用 jQuery 在动态创建的元素上绑定事件?
若要将事件绑定到动态创建的元素,你需要动态加载。你可以尝试运行以下代码来了解如何在动态创建的元素上绑定事件。这里,我们将通过单击按钮生成新的列表项。
示例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("ul").append("<li>new item <a href='javascript:void(0);' class='del'>×</a></li>"); }); $(document).on("click", "a.del" , function() { $(this).parent().remove(); }); }); </script> </head> <body> <button>Add</button> <p>Click the above button to dynamically add new list items. You can remove it later.</p> <ul> <li>item</li> </ul> </body> </html>
广告