function ff_chk_username_unique(element, action)
{
alert(element.value);
alert(action);
var actiona="http://localhost/myproject/check/check_username.php";
var form_data = {
username: element.value,
};
alert(actiona);
$.ajax({
type: "GET",
url: actiona,
data: form_data,
success: function(response)
{
alert(response)
}
});
} // ff_chk_username_unique
我的 ajax 文件的代码...
文件未在 AJAX 中调用,
Ajax的定义是否正确? 请帮我解决它....
它在 breezingForms 中工作,但是当你使用 ajax 时你需要添加 jquery 文件......