我正在使用HTML5表单验证和wana将自定义验证错误更改为用户,但我发现了一个适用于javascript的函数,我的问题是我的consol给了我一些提示,它说TypeError:$(.. 。)。setCustomValidity不是一个函数,我知道它,s java脚本函数,所以我应该在jquery中使用什么? 有没有相同的功能??
$(document).ready(function() {
//the min chars for username
//when field is focus out
$('#phone').focusout(function(){
//run the character number check
//get the phone
$phone = $('#phone').val();
//use ajax to run the check
$.ajax({
url: 'check.php',
type: 'POST',
dataType: 'html',
data: {
phone : $('#phone').val()
},
success:function(response){
if(response == "1"){
$('#phone').setCustomValidity('blahblahbla ');
}
}
});
});
这是我的代码,感谢您的回答。
答案 0 :(得分:0)
尝试:
document.getElementById("phone").setCustomValidity("My Message Here");
相反,虽然我不确定这会完成你想要的东西。