demo.html 816 Bytes
<h4>点击下列链接弹出 - 系统提示框</h4>
<a href="javascript:;" onclick="Alert1()">基本用法</a>
<a href="javascript:;" onclick="Alert2()">改变按钮文本</a>
<a href="javascript:;" onclick="Alert3()">关闭后的回调用法</a>
<a href="javascript:;" onclick="Alert4()">进阶用法</a>
<style>
h4 { margin: 10px; }
a {
    display: block;
    padding: 5px 16px;
    color: #108ee9;
    text-decoration: underline;
}
</style>
<script>
function Alert1() {
    Mobile_NS.alert('信息1');
}

function Alert2() {
    Mobile_NS.alert('信息2', 'OK');
}

function Alert3() {
    Mobile_NS.alert('信息3', function () {
        Mobile_NS.msg("信息关闭1");
    });
}

function Alert4() {
    Mobile_NS.alert('信息4', 'OK', function () {
        Mobile_NS.msg("信息关闭2");
    });
}
</script>