我想定义这个脚本,因为我想调用它:
$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;
});
});
任何人都可以帮我修复这个脚本吗?
答案 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;
});
}
});