gpt4 book ai didi

javascript - 如何使用 jquery 或 javascript 编写检查验证的条件

转载 作者:行者123 更新时间:2023-11-30 07:45:49 25 4
gpt4 key购买 nike

你好 friend ,

        $('input[name=checkedRecordsCat]').attr('checked', true);
$('input[name=checkedRecordsSubCat]').attr('checked', true);
$('input[name=checkedRecordsAtta]').attr('checked', true);
$('input[name=checkedRecordsTextComp]').attr('checked', true);
$('input[name=checkedRecordsVariableText]').attr('checked', true);
$('input[name=checkedRecordsFreeFormText]').attr('checked', true);

我的页面上有这个。我需要检查是否没有检查过我需要显示弹出消息。至少选中一个复选框我需要返回 true。

如何使用 jquery 或 javascript 编写此条件

谢谢

最佳答案

假设没有其他名称以 checkedRecords 开头的元素,您可以使用 starts-with selector结合 :checked selector

if ( $('input[name^="checkedRecords"]:checked').length ){
// at least one is checked
return true;
} else {
// none is checked
// show popup here..
}

关于javascript - 如何使用 jquery 或 javascript 编写检查验证的条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6764946/

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