uni-app的几种提示框

1. uni.showToast(OBJECT)

直接弹出提示:

uni.showToast({
    title: '标题',
    duration: 2000
});

隐藏提示框:uni.hideToast();

2.加载框

uni.showLoading({
	title: '加载中'
});

setTimeout(function () {
	uni.hideLoading();
}, 2000);

uni-app的几种提示框_第1张图片

3.uni.showModal(OBJECT)

显示模态弹窗,可以只有一个确定按钮,也可以同时有确定和取消按钮。

uni.showModal({
    title: '提示',
    content: '这是一个模态弹窗',
    success: function (res) {
        if (res.confirm) {
            console.log('用户点击确定');
        } else if (res.cancel) {
            console.log('用户点击取消');
        }
    }
});

你可能感兴趣的:(uniapp,css,css3,html)