easyui的提示框

1.alert方法,提示框

$.messager.alert('title','content','info')
参数是:标题,内容,提示图标
提示图标有:info warning error question

在这里插入图片描述

2.confirm方法,确认框

 $.messager.confirm('title','info',function (r) {
    // 回掉函数,r是确定还是去掉,确定true 取消 false
 })

在这里插入图片描述

3.show方法,欢迎框

$.messager.show({
  title:'title',
  msg:'welcome to China',
  timeout:5000,
  showType:'slide'
});

在这里插入图片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章