情境描述
我的HTML表单加载了可变数量的具有属性valid = "default"
的元素。
当用户输入每个元素的值时,我使用AJAX验证标记并相应地将valid
设置为true或false。
按下提交按钮后,我会收集valid
属性值。
问题
jQuery只返回valid
的初始值。有没有办法获得valid
的更新值?
我使用的代码:
var tags = ($('.tag').map(function () { return $(this).attr('valid') })).get();
["default", "default"]
之后,也会返回["true", "false"]
我是JavaScript,jQuery和AJAX的新手。所以,如果有更好的方法,请告诉我你的想法。
答案 0 :(得分:2)
$('#' + field + 'cell')
选择td
元素,input
具有valid
属性的父元素,而不是input
元素本身,导致
.attr("valid", "false")
应用于父td
元素,不 子 input
元素。
尝试删除DOM
事件属性,将选择器更改为
$('#' + field + 'cell')
.attr("style", 'border:3px solid #FF0000')
.find("[id="+field+"]").attr("valid", "false")
$(function() {
function validate(field, query) {
$.ajax({
type: "POST",
url: "/echo/json/",
data: {json:JSON.stringify(query)}
})
.done(function(response) {
console.log(field, response === "false", response === "true")
//response = response.replace(/[[\]]/g,'');
if(response === 'false') {
$('#' + field + 'cell')
.attr("style", 'border:3px solid #FF0000')
.find("[id="+field+"]").attr("valid", "false")
}
else {
$('#' + field + 'cell')
.attr("style", 'border: none')
.find("[id=" + field + "]")
.attr("valid", "true")
}
})
.fail(function() {
$('#response').html('error');
})
.always(checkForm) // added to verify `checkForm` at each `$.ajax` call
}
function checkForm(variable) {
var tags = $.map($(".tag"), function (el) { return $(el).attr('valid') });
console.log(tags);
}
$("#submitButton").on("click", function(e) {
checkForm()
});
$("[id^=tag]").on("blur", function(e) {
validate(e.target.id, e.target.value)
});
});
jsfiddle http://jsfiddle.net/mL8ttwc0/2/