gpt4 book ai didi

javascript - 如何使用 javascript ajax 验证每个文本框?

转载 作者:行者123 更新时间:2023-11-28 05:20:24 25 4
gpt4 key购买 nike

我想验证每个动态文本框,这样当在每个文本框中输入输入(pid)时,输入将被传递到 ajax 中,并且如果 personName 在数据库中并且数据库中的 personName 与另一个文本框中的 personName。但我不确定该怎么做。这是我的样本检查。

Javascript:

function validateTextbox() {


var pName = document.getElementsByClassName("personNameStatic");
var pNameVal = pName[0].value;//value of personName in another textbox

var pn = document.getElementsByClassName("personName"); //person name which will be passed to an ajax to get personName from DB

for (var i = 0; i < pn.length; i++) {
var pnval = pn[i].value;


$.ajax({
//ajax here
success: function(data) {

var personName = data.pName;

if (pNameVal == personName){ //compare pNameVal (from another textbox) to personName (coming from DB)

alert("Name is valid.");
}else{

alert ("Name is invalid");
}
},//END: success
});//END: ajax
}

}

HTML:

<td><input type="text" name="personName" id="personId-1" class="personName" size="30"/></td> //textbox which inputs the pid
<td><input type="text" name="personName" id="personId-2" class="personName" size="30"/></td> //textbox which inputs the pid
<td><input type="text" name="personName" id="personId-3" class="personName" size="30"/></td> //textbox which inputs the pid


<td><input type='text' id='personIdstatic' class='personNameStatic' size='30' value='John' disabled /></td>

请帮助了解如何验证每个文本框?谢谢

最佳答案

您可以在每个文本框中迭代循环,并可以根据数据库值检查和验证文本框的值

var personName = data.pName; // this is from back-end 

$(".personName").each(function(){
if($(this).val() == personName ){

}else{

}
})

关于javascript - 如何使用 javascript ajax 验证每个文本框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40610054/

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