美文网首页MUI的那些事
mui消息框alert,confirm,prompt,toast

mui消息框alert,confirm,prompt,toast

作者: 依东望 | 来源:发表于2018-09-13 17:09 被阅读0次

    <script type="text/javascript" charset="utf-8">

                //mui初始化

                mui.init({

                    swipeBack: true //启用右滑关闭功能

                });

    最普通的弹出框:

                var info = document.getElementById("info");

                document.getElementById("alertBtn").addEventListener('tap', function() {

                    mui.alert('欢迎使用Hello MUI', 'Hello MUI', function() {

                        info.innerText = '你刚关闭了警告框';

                    });

                });

    升级版的,有确认和取消:

                document.getElementById("confirmBtn").addEventListener('tap', function() {

                    var btnArray = ['否', '是'];

                    mui.confirm('MUI是个好框架,确认?', 'Hello MUI', btnArray, function(e) {

                        if (e.index == 1) {

                            info.innerText = '你刚确认MUI是个好框架';

                        } else {

                            info.innerText = 'MUI没有得到你的认可,继续加油'

                        }

                    })

                });

    超级版,有确认、取消以及填写内容的部分:

                document.getElementById("promptBtn").addEventListener('tap', function(e) {

                    e.detail.gesture.preventDefault(); //修复iOS 8.x平台存在的bug,使用plus.nativeUI.prompt会造成输入法闪一下又没了

                    var btnArray = ['取消', '确定'];

                    mui.prompt('请输入你对MUI的评语:', '性能好', 'Hello MUI', btnArray, function(e) {

                        if (e.index == 1) {

                            info.innerText = '谢谢你的评语:' + e.value;

                        } else {

                            info.innerText = '你点了取消按钮';

                        }

                    })

                });

                document.getElementById("toastBtn").addEventListener('tap', function() {

                    mui.toast('欢迎体验Hello MUI');

                });

            </script>

    相关文章

      网友评论

        本文标题:mui消息框alert,confirm,prompt,toast

        本文链接:https://www.haomeiwen.com/subject/arfggftx.html