weui 提示操作,加载提示loading,toast


weui调用内置的加载提示、操作提示:

$.toast("取消操作", "cancel");
$.toast("禁止操作", "forbidden");
$.toast("纯文本", "text");
// 第二个参数可以是时间,单位毫秒
$.toast("消息", 20000);


官网没有提到的用法,显示Loading
$.showLoading("数据加载中");
关闭Loading
$.hideLoading();


评论/留言