gpt4 book ai didi

jquery - 如何使用 JQuery 查找页面上存在的特定类

转载 作者:行者123 更新时间:2023-12-03 21:36:18 25 4
gpt4 key购买 nike

我想编写 JQuery 来查找页面上是否存在 Class="Mandatory" ,如果有任何元素具有此类,则仅执行某些操作。

谢谢

最佳答案

当您使用 jQuery 搜索时,只需检查您命中了多少个元素即可

if ($(".Mandatory").length > 0) {
// Do stuff with $(".Mandatory")
$(".Mandatory").each(function() {
// "this" points to current item in looping through all elements with
// class="Mandatory"
$(this).doSomejQueryWithElement();
});
}

编辑如果您想检查提交按钮的点击情况,只需在点击后进行检查即可:

$("input[type='submit']").click(function() {
if ($(".Mandatory").length > 0) {
// Do some code here
}
});

关于jquery - 如何使用 JQuery 查找页面上存在的特定类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7387160/

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