gpt4 book ai didi

javascript - 替换后无法单击元素

转载 作者:行者123 更新时间:2023-12-03 07:44:43 24 4
gpt4 key购买 nike

我有带有点击事件的元素。单击时,我将此元素替换为另一个元素,但元素类相同(事件按类(jQuery))。但点击两次就不起作用了。

最佳答案

在父节点上绑定(bind)事件:

<div id="the_parent">
<button>Replace me!</button>
</div>
$('#the_parent').on('click', 'button', function (ev) {
// TODO: handle appropriately
});

参见:http://api.jquery.com/on/#on-events-selector-data-handler :

.on( events [, selector ] [, data ], handler )

selector

Type: String

A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.

关于javascript - 替换后无法单击元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35258245/

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