不要使用按钮的单击处理程序,而要使用表单提交事件。
$(document).ready(function () { $('#username').change(function () { var userName = $('#username').val(); $.post("getUserName.php", { userName: userName }, function (data) { $("#userNameCheck").html(data); }); }); $('#addform').submit(function () { //if the text is `You can use it` allow the form submit else block it return $("#userNameCheck").html().trim() == 'You can use it'; });});
还要确保您执行相同的验证,
test2.php因为客户端验证可以分步进行。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)