ボタンにクリックハンドラーを使用する代わりに、フォーム送信イベントを使用します。
$(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
でも同じ検証を行うようにしてください なぜなら、クライアント側の検証はサイドステップで実行できるからです。