gpt4 book ai didi

javascript - ajax 元素不适用于 append 内容

转载 作者:行者123 更新时间:2023-12-02 18:52:35 25 4
gpt4 key购买 nike

我有以下 JavaScript:

<script>
$(document).ready(function() {
$('[class^="commentbubble_"]').click(function () {
var ID = $(this).attr('class').replace('commentbubble_', '');
$('.commentform_'+ID).toggle();
$('#commentsection').masonry( 'reload' );
});
});
</script>

它适用于结果的第一页...但对于新 append 的,它不起作用。有没有办法确保此功能适用于新 append 的内容?

谢谢。

最佳答案

您可以尝试使用 .on() 处理程序将事件委托(delegate)给其在页面加载时可用的父级事件或 $(document) 本身:

$(document).ready(function() {
$(document).on('click', '[class^="commentbubble_"]', function () {
var ID = $(this).attr('class').replace('commentbubble_', '');
$('.commentform_'+ID).toggle();
$('#commentsection').masonry( 'reload' );
});
});

关于javascript - ajax 元素不适用于 append 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15674612/

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