- 注册时间
- 2013-11-28
- 最后登录
- 2014-7-23
- 阅读权限
- 10
- 积分
- 78
- 精华
- 0
- 帖子
- 22

|
felt 发表于 2013-11-28 15:04 
提交的方法贴一下
提交的方法在edit.jsp页面里有,
function submitForm(e){
var o = form.getData(true,true);
form.validate();
if (form.isValid() == false) return;
nui.mask({
el: document.body,
cls: 'mini-mask-loading',
html: '数据修改成功'
});
setTimeout(function () {
nui.unmask(document.body);
}, 2000);
var forda=$("#editMenuForm").submit();
// var href=location.href;
// location.href=href;
} |
|