gpt4 book ai didi

javascript - Jquery 类选择器

转载 作者:行者123 更新时间:2023-11-28 21:04:39 24 4
gpt4 key购买 nike

我正在开发一个正在使用的应用程序

 $("#plblAgreeProblem",".plblAgreeComment").live("click", function(){
alert("bil");
}

但是类选择器不起作用。我的 div 具有 class="plblAgreeComment"是动态创建的,所以我使用 .live()

请帮助我。

最佳答案

问题不太清楚。对于选择器,请尝试使用以下内容。

$("#plblAgreeProblem, .plblAgreeComment").live("click", function(){
alert("bil");
});

$(".plblAgreeComment").live("click", function(){
alert("bil");
});

关于javascript - Jquery 类选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10180287/

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