这个语法怎么了?

时间:2013-09-09 10:48:45

标签: jquery ajax ready

我想定义这个脚本,因为我想调用它:

$j(document).ready(function() { 
    //Show and hide the Loading icon on Ajax start/end

    $j('.bwbps_uploadform').submit(function() { 
        $j('#bwbps_message').html('');
        bwbpsAjaxLoadImage(this);
        return false; 

    });

现在:

var myFunction;
$j(document).ready(function() { 
    //Show and hide the Loading icon on Ajax start/end
myFunction = function() {
    $j('.bwbps_uploadform').submit(function() { 
        $j('#bwbps_message').html('');
        bwbpsAjaxLoadImage(this);
        return false; 

    });
});

任何人都可以帮我修复这个脚本吗?

1 个答案:

答案 0 :(得分:2)

您没有正确关闭文档就绪功能:

var myFunction;
$j(document).ready(function () {
    //Show and hide the Loading icon on Ajax start/end
    myFunction = function () {
        $j('.bwbps_uploadform').submit(function () {
            $j('#bwbps_message').html('');
            bwbpsAjaxLoadImage(this);
            return false;

        });
    }
});