我坚持这个。我想获取字段的 值 ,以便在警报中将其用作验证脚本的一部分。这是我的代码:
(该函数正在onblur
事件(isFieldBlank(this)
)上调用。
function isFieldBlank(that) {
if($(that).val()=="") {
var fieldLabel = $('label[for*="' + that + '"]).val();
alert(fieldLabel);
alert("You must provide a value for: ") + fieldLabel;
$(that).addClass("error");
$(that).focus();
return false;
} else {
$(that).removeClass("error");
}
}
答案 0 :(得分:3)
使用此:
var fieldLabel = $('label[for*="' + $(that).attr('id') + '"]').text();
答案 1 :(得分:1)