我正在使用此示例代码: http ://www.w3schools.com/php/php_ajax_php.asp 进行实时名称搜索并显示它是否可用。
如果名称正在使用,如何禁用表单提交按钮,但如果名称可用则启用它?
非常感谢 :)
感谢您的建议。我已将其添加到功能中,现在当我输入任何内容时按钮会禁用..
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
$('#submit').attr('disabled', 'disabled');
}
}
我怎么做这只是为了一场比赛?谢谢