mui js 个推消息推送点击通知栏跳转到指定的页面

/**
 * 消息推送
 */

document.addEventListener("plusready", function() {
    // 监听点击消息事件
    plus.push.addEventListener("click", function(msg) {
        //根据需要填写
        plus.webview.open("messagehistory.html");

    }, false);
}, false);

备注:mui.openWindow('url','id',{});不生效

[转载文章]https://blog.csdn.net/dogel/article/details/79544180

 

你可能感兴趣的:(mui)