类似 facebook的浏览器消息推送
类似 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>
继续浏览:
发表评论