gpt4 book ai didi

javascript - jQuery 有 "Update"函数吗?

转载 作者:行者123 更新时间:2023-11-28 05:19:22 26 4
gpt4 key购买 nike

如果我们将 Html 推送到 Dom ,它将显示在那里但不会更新。 jQuery 有更新函数吗?

$(function(){
$('#add').on('click', function(){
$('.outer').append('<div class="data"><input type="text" value="enter" /><a href="#" class="remove">Remove</a></div>');
});
$('.remove').on('click', function(){
alert('not working');
});
});
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

<body>

<div class="outer">
<input type="button" value="Click me" id="add" />
</div><!-- /.outer -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

</body>
</html>

当我们推送到 DOM 时, anchor 链接不起作用,每个答案都必须感谢?

最佳答案

您应该使用 $(document).on('click', '.remove' 代替:

$(function(){
$(document).on('click', '#add', function(){
$('.outer').append('<div class="data"><input type="text" value="enter" /><a href="#" class="remove">Remove</a></div>');
});
$(document).on('click', '.remove', function(){
alert('not working');
});
});

通过这种方式,jQuery 会监听文档上的 click 事件,如果目标元素是 .remove(例如)- 将触发该函数。元素是否动态添加并不重要 - click 事件始终在文档中,jQuery 将检查目标元素(并采取相应行动)。

这是对您的代码段的更新:

$(function(){
$(document).on('click', '#add', function(){
$('.outer').append('<div class="data"><input type="text" value="enter" /><a href="#" class="remove">Remove</a></div>');
});
$(document).on('click', '.remove', function(){
alert('not working');
});
});
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>

<body>

<div class="outer">
<input type="button" value="Click me" id="add" />
</div><!-- /.outer -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>

</body>
</html>

关于javascript - jQuery 有 "Update"函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40986460/

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