gpt4 book ai didi

javascript - 使用 javascript 检查值是否插入到表单中

转载 作者:行者123 更新时间:2023-12-03 05:13:17 25 4
gpt4 key购买 nike

我正在开发一个带有添加更多按钮的表单。当我单击该按钮时,将生成一组字段。我已经为此完成了 javascript 验证,如果所有添加的字段均为空,则会发出警报消息。其代码是:

var n = document.getElementById('cnnumrows').value, i;

if ( frm_add_announcement.sublink[1].checked == true ) {
for(i=1; i<=n; i++) {
if ( (document.getElementById('url'+i).value.trim()=="") && ( document.getElementById("document"+i).files.length == 0 ) ) {
alert("Enter a url/upload a file");
document.getElementById('captionurl').focus();
return false;
}
}
}

我必须将其更改为如果任何字段插入值则无需发出警报,并且如果全部为空则发出警报。任何建议

最佳答案

试试这个:

var n = document.getElementById('cnnumrows').value;

if ((frm_add_announcement.sublink[1].checked)) {
// will be set to true if some value is inserted
var someValue = false;
for (var i = 1; i <= n; i++) {
if (document.getElementById('url' + i).value || document.getElementById("document" + i).files.length) {
someValue = true;
}
}

// if at this point someValue is still falsy - no values inserted, fire your alert
if (!someValue) {
alert("Enter a url/upload a file");
document.getElementById('captionurl').focus();
return false;
}
}

关于javascript - 使用 javascript 检查值是否插入到表单中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41712806/

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