1.html
$("#dg").datagrid("load",{
"userName":$("#s_userName").val()
});json
數據表的load方法,用於加載數據,後面能夠寫上參數,格式爲:{"參數名":參數值,"":""}中間用逗號分開post
2.$("#dlg").dialog("open").dialog("setTitle","添加用戶信息");ui
能夠打開對話框的方法,後面是設置標題this
3.$("#dg").datagrid("getSelections");url
獲取數據表中選中的行orm
4.$.messager.alert("系統提示", "請選擇一條要編輯的數據!");htm
easyui 的 alert方法blog
5.get
$("#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