0

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

$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; 

    });
});

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

4

1 回答 1

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;

        });
    }
});
于 2013-09-09T10:50:37.237 回答