message实现手机端alert confirm toast提示效果代码

代码语言:html

所属分类:弹出层

代码描述:message实现手机端alert confirm toast提示效果代码

代码标签: alert confirm toast 提示 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/message.js"></script>
    <style>
		body{padding: 20px}
        button {padding: 5px 10px;font-size: 16px; background: #ffc107; color: #fff;border: none}
    </style>
</head>
<body>
    <h2>alert方法</h2>
    <button id="alert">点击查看</button>
    <div style="padding:20px;background: #efefef">
        默认调用:alert('请打开麦克风')
    </div>
    <br>
    <button id="alert2">点击查看</button>
    <div style="padding:20px;background: #efefef">
        回调函数:alert('请打开麦克风').then(callback)
    </div>
    <br>
    <button id="alert3">点击查看</button>
    <div style="padding:20px;background: #efefef">
        支持多参数:alert({
            title: '我是标题',
            content: '请打开麦克风',
            doneText: '按钮文字'
        }).then(callback)
    </div>
    <script>
        document.getElementById('alert').onclick = function () {
            alert('请打开麦克风')
        }
        document.getElementById('alert2').onclick = function () {
            alert('请打开麦克风').then(() => {
                console.log('已确认')
            })
        }
        document.getElementById('alert3').onclick = function () {
            alert({
                title: '我是标题',
                content: '请打开麦克风',
                doneText: '按钮文字'
            })
        }
    </script>
    <br>
    <br>
    <h2>confirm方法</h2>
    <button id="confirm">点击查看</button>
    <div style="padding:20px;background: #efefef">
        默认调用:confirm('请打开麦克风')
    </div>
    <br>
    <button id="confirm1">点击查看</button>
    <div style="padding:20px;background: #efefef">
            confirm({
                title: '我是标题',
                content: '请打开麦克风',
                doneText: '确认按钮文字',
                cancalText: '取消按钮文字'
            }).then(() => {
                console.log('已确认')
            }).catch(() => {
                console.log('已取消')
            })
    </div>
    <br>
    <button id="confirm2">点击查看</button>
    <div style="padding:20px;background: #efefef">
            confirm({
      .........完整代码请登录后点击上方下载按钮下载查看

网友评论0