demo.html 462 Bytes
<h4>点击下列链接弹出 - 消息提示框</h4>
<a href="javascript:;" onclick="Msg1()">基本用法 - 默认2秒关闭</a>
<a href="javascript:;" onclick="Msg2()">设置3秒关闭</a>
<style>
h4 { margin: 10px; }
a {
    display: block;
    padding: 5px 16px;
    color: #108ee9;
    text-decoration: underline;
}
</style>
<script>
function Msg1() {
    Mobile_NS.msg('消息提示1');
}

function Msg2() {
    Mobile_NS.msg('消息提示2', 3);
}
</script>