3
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 定义正确吗?请帮我解决它....

4

1 回答 1

1

它在 breezingforms 中工作,但是在使用 ajax 时需要添加 jquery 文件...

于 2012-02-08T09:05:44.250 回答