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定义得当吗?请帮我解决一下....
答案 0 :(得分:1)
它在breezingforms中工作但你需要在使用ajax时添加jquery文件......