1. 程式人生 > >easyui提示框

easyui提示框

easyui提示框

1:alert提示

info可以換成error,question,info,warning

$.messager.alert('title','msg','info');

帶有回撥函式

$.messager.alert('title','msg','info',function(){ 
    do some thing...
  } 
);

2:show提示

$.messager.show({
	title:'提示', 
	msg:'msg', 
	showType:'slide',//出現的方式
	width: 300,
    height: 130,
    style:{top:0}//指從哪裡出現,預設從右下方
});

3:progress可以用來做簡易版載入中

$.messager.progress({
	title: '查詢中',
	text: '正在查詢,請稍後......'
});