gpt4 book ai didi

jquery - 如何使用jquery从innerHTML或.html()设置目标元素

转载 作者:行者123 更新时间:2023-12-01 03:19:21 27 4
gpt4 key购买 nike

我有一个 div,其内容是从 innerHTML 动态生成的,我似乎无法使用 jQuery 来定位这些元素进行验证,例如,这是页面:

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
</head>
<body>
<span id="alert1">Alert1</span>
<input type="button" value="Click Me" id="button1" />
<div id="empty"></div>
</body>
</html>

这是js代码:

<script type = "text/javascript"> 
$(document).ready(function() {
$('#button1').click(function() {
var html = "uname <input type='text' id='uname'><br />password <input type='text' id='password'><br /><span id='alert'>Alert</span>";
$('#empty').html(html);
});
$('#alert').click(function() {
alert('Alert');
});
$('#alert1').click(function() {
alert('Alert1');
});
});
</script>​

ID为alert1的span的警报有效,但使用innerHTML或.html()设置的id警报不起作用,那么如何解决这个问题?

提前谢谢您​

最佳答案

这里的问题是,当你这样写时..

    $("#element").click(function() {
alert("Alert!");
});

..它只会为执行代码时存在的元素创建事件处理程序。它不会为 future 的元素创建事件处理程序,即使它们具有相同的 jQuery 选择器(在本例中为“#element”)。

您需要做的是与父元素上的 .on(event,selector,function) 绑定(bind),因为事件会“冒泡”层次结构。这样您就可以处理来自指定选择器的 future 事件。就我个人而言,我会这样做:

$(document).ready(function() {
$('#button1').click(function() {
var html = "<insert lots of html stuff here>";
$('#empty').html(html);
});

$(document).on("click", "#alert", function() {
alert("Alert!");
});

$(document).on("click", "#alert1", function() {
alert("Alert1!");
});
});​

关于jquery - 如何使用jquery从innerHTML或.html()设置目标元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11716713/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com