我想要一个像这样的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;
}
{available: true}
如果名称可以.
也就是说,您可能应该异步执行此操作.像这样:
function checkUsernameAvailability(username) {
$.getJSON("checkusername.PHP", {name: username}, function (response) {
if (!response.available) {
alert("Sorry, but that username isn't available.");
}
});
}