ajax不工作在bomzing形式的joomla组件

时间:2012-01-31 09:04:30

标签: joomla1.6 breezingforms

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定义得当吗?请帮我解决一下....

1 个答案:

答案 0 :(得分:1)

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