gpt4 book ai didi

javascript - 更新可点击的div

转载 作者:行者123 更新时间:2023-12-03 11:32:20 25 4
gpt4 key购买 nike

我想在替换的元素上获取点击事件。

var checks_int = "1";
$(function () {
var plus = $('.fa-plus');

plus.click(function () {
if (checks_int <= 5) {
$(this).parent().parent().append("<li><i class='fa fa-plus'></i></li>");
$(this).parent().html("").html("<i class='fa fa-check' check='"+ (checks_int + 1) +"'></i><p><input name='check1' type='text' placeholder='Check'></p>");
checks_int++;
if (checks_int > 5) {
$(this).css("display", "none");
}
}
plus = $('.fa-plus');
});
});

所有这些都工作正常,但只是第一次尝试,当我单击“new”.fa .fa-check时什么也没有发生。

最佳答案

将您的点击处理程序更改为如下所示。应该可以了。

$(document).on('click', '.fa-plus', function() {
......... your code here ..............
});

关于javascript - 更新可点击的div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26682399/

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