返回官网

类似 facebook的浏览器消息推送

狒狒 2017-3-28 技术札记 761 次

类似 facebook的浏览器消息推送 


重要的代码是 Notification 

<script>
function showNotice() {   
    Notification.requestPermission(function (perm) {  
        if (perm == "granted") {  
            var notification = new Notification("Wholesale Innokin iTaste VTR VV/VW MOD with iClear30S Cartomizer Kit", {  
                dir: "auto",  
                lang: "AVE40",  
                tag: "AVE40",  
                icon: "http://localhost/ave40_mg/skin/frontend/base/default/media/logo.png",  
                    body: "US $70.50"  
            });  
        }  
    })  
}  
showNotice();
</script>

发表评论

Copyright © 2016 DEWEBSTUDIO