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: '正在查询,请稍后......'
});

猜你喜欢

转载自blog.csdn.net/x5087082/article/details/82151772