day03-easyUI中messager物件方法及menubutton選單使用
messager物件方法使用
alert方法---提示框
(info預設是英文,如果需要是中文,需要引入:
<script type="text/javascript" src="${pageContext.request.contextPath }/js/easyui/locale/easyui-lang-zh_CN.js"></script>)
$.messager.alert("標題","內容","info");
confirm---確認框
$.messager.confirm("提示資訊","你確定要刪除當前記錄嗎?",function(r){
alert(r);
});
show方法---歡迎框
$.messager.show({
title:'歡迎資訊',
msg:'歡迎【admin】登入系統!',
timeout:5000,
showType:'slide'
});
menubutton選單使用
<body>
<!-- 製作選單 -->
<a data-options="iconCls:'icon-help',menu:'#mm'" class="easyui-menubutton">控制面板</a>
<!-- 使用div元素製作下拉選單 -->
<div id="mm">
<div>修改密碼</div>
<div>聯絡管理員</div>
<div class="menu-sep"></div>
<div>退出系統</div>
</div>
</body>