胡志敏

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

function
addTab(subtitle, url, icon) { if (!$('#tabs').tabs('exists', subtitle)) { $('#tabs').tabs('add', { title: subtitle, content: createFrame(url), closable: true, icon: icon }); } else { $('#tabs').tabs('select', subtitle); $('#mm-tabupdate').click(); } tabClose(); } function TopaddTab(title, url,icon) { var jq = top.jQuery; if (jq("#tt").tabs('exists', title)) { jq("#tt").tabs('select', title); } else { jq("#tt").tabs('add', { title: title, content: createFrame(url), closable: true, icon: icon }); } tabClose(); } function createFrame(url) { var s = '<iframe scrolling="auto" frameborder="0" src="' + url + '" style="width:100%;height:100%;"></iframe>'; return s; } function Msgshow(msg) { $.messager.show({ title: '提示', msg: msg, showType: 'show' }); } function Msgslide(msg) { $.messager.show({ title: '提示', msg: msg, timeout: 3000, showType: 'slide' }); } function Msgfade(msg) { $.messager.show({ title: '提示', msg: msg, timeout: 3000, showType: 'fade' }); } //弹出信息窗口 title:标题 msgString:提示信息 msgType:信息类型 [error,info,question,warning] function Msgalert(title, msgString, msgType) { $.messager.alert(title, msgString, msgType); } ///当提交信息的触发 var successCallback = function (result) { //result为请求处理后的返回值 var result = eval('(' + result + ')'); if (result.success) { $.messager.show({ title: '成功', msg: result.msg, timeout: 2000, showType: 'fade' }); grid.datagrid('reload'); //grid变量要与其他文件中的一致 dlg_Edit.dialog('close'); //dlg_Edit与其他文件中的一致 才能公共调用 } else { $.messager.show({ title: '错误提示', msg: result.msg }); } }

 

posted on 2015-07-09 21:39  懂了遗憾  阅读(214)  评论(0)    收藏  举报