- 注册时间
- 2012-9-10
- 最后登录
- 2014-1-3
- 阅读权限
- 10
- 积分
- 800
- 精华
- 0
- 帖子
- 228
|
- function startCalc(){
- mini.loading("正在计算,请耐心等待...","提示");
- $.ajax({
- url: "YieldCurve/showYield.do",
- data: {'BondNature':combo1.getValue(),'beginDate':bd,'endDate':ed},
- type: "post",
- success: function (text) {
- mini.unmask(document.body);
- },
- error: function (jqXHR, textStatus, errorThrown) {
- alert(jqXHR.responseText);
- }
- });
- }
复制代码 请问遮罩为什么取消不了呢! 如何取消呢?
|
|