码迷,mamicode.com
首页 > Web开发 > 详细

关于easyUI的一些js方法

时间:2018-03-08 23:04:07      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:提示   UI   selected   select   www   combobox   无法   post   on()   

1.

$("#dg").datagrid("load",{
"userName":$("#s_userName").val()
});

数据表的load方法,用于加载数据,后面可以写上参数,格式为:{"参数名":参数值,"":""}中间用逗号分开

2.$("#dlg").dialog("open").dialog("setTitle","添加用户信息");

可以打开对话框的方法,后面是设置标题

3.$("#dg").datagrid("getSelections");

获取数据表中选中的行

4.$.messager.alert("系统提示", "请选择一条要编辑的数据!");

easyui 的 alert方法

5.

$("#fm").form("submit",{
  url:url,
  onSubmit:function(){
    if($("#roleName").combobox("getValue")==""){
      $.messager.alert("系统提示","请选择用户角色!");
      return false;
    }
    return $(this).form("validate");
  },
  success:function(result){
    var result=eval(‘(‘+result+‘)‘);
     if(result.success){
      $.messager.alert("系统提示","保存成功!");
      resetValue();
      $("#dlg").dialog("close");
      $("#dg").datagrid("reload");
     }else{
      $.messager.alert("系统提示","保存失败!");
     }
  }
});

easyUI提交表单的方法

6.$("#dlg").dialog("close");

关闭对话框

7.

$.messager.confirm("系统提示","您确定要删除这<font color=red>"+selectedRows.length+"</font>条数据吗?",function(r){
if(r){
$.post("${pageContext.request.contextPath}/user/delete.do",{ids:ids},function(result){
if(result.success){
$.messager.alert("系统提示","数据已成功删除!");
$("#dg").datagrid("reload");
}else{
$.messager.alert("系统提示","数据删除失败,请联系系统管理员!");
}
},"json");

});

easyui $.post方法一定要指定为json格式,否则后台传来的数据无法解析

 

https://www.cnblogs.com/prefect/p/5664462.html

关于easyUI的一些js方法

标签:提示   UI   selected   select   www   combobox   无法   post   on()   

原文地址:https://www.cnblogs.com/dotnetmvc/p/8531117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!