提问:
使用YUI访问后台,返回之后将提示alert到前台,但是前台
IE页面的进度不结束。
var callback={
upload:function(res) {
var tax = [];
tax = YAHOO.lang.JSON.parse(res.responseText);
if(tax.data[0].checkResult=="1") {
progressBar.hide();
errorMessage('******');
}
}
}
YAHOO.util.Connect.setForm("fm",true);
var url = contextRootPath+"/policyImport/policyImportEdit.do";
var transaction = YAHOO.util.Connect.asyncRequest('POST',url, callback,null);
但是如果在返回的结果中使用window.location.href跳转当前页面,及可以解决,但是我不想重新跳转,请问有其他解决方案吗?
回答:
if(tax.data[0].checkResult=="1") {
progressBar.hide();
errorMessage('******');
}
此处不管有没有 结果返回 都应该 progressBar.hide(); 吧
posted on 2012-12-17 15:37
墙头草 阅读(1589)
评论(0) 编辑 收藏