php-使用AJAX / Jquery进行实时用户名查找
作者:互联网
我想要一个像这样的javascript函数:
function isUsernameAvailable(username)
{
//Code to do an AJAX request and return true/false if
// the username given is available or not
}
如何使用Jquery或Xajax完成此操作?
解决方法:
使用AJAX的最大好处是它是异步的.您正在要求同步函数调用.可以这样做,但是它可能会在等待服务器时锁定浏览器.
使用jQuery:
function isUsernameAvailable(username) {
var available;
$.ajax({
url: "checkusername.php",
data: {name: username},
async: false, // this makes the ajax-call blocking
dataType: 'json',
success: function (response) {
available = response.available;
}
});
return available;
}
然后,您的php代码应检查数据库,然后返回
{available: true}
如果名称可以.
也就是说,您可能应该异步执行此操作.像这样:
function checkUsernameAvailability(username) {
$.getJSON("checkusername.php", {name: username}, function (response) {
if (!response.available) {
alert("Sorry, but that username isn't available.");
}
});
}
标签:dhtml,javascript,php,jquery,ajax 来源: https://codeday.me/bug/20191014/1912589.html