Home > Web Front-end > H5 Tutorial > body text

Examples of H5 implementing desktop notification and prompt functions

黄舟
Release: 2017-10-16 11:14:00
Original
2796 people have browsed it

This article mainly introduces the implementation of desktop notification prompt function in HTML5. It is very good and has reference value. Friends who need it can refer to it

The specific code is as follows:


<button id="button">有人想加你为好友</button>
<p id="text"></p>
;(function (){
    if(window.Notification){
        var btn = document.getElementById("button");
        var txt = document.getElementById("text");
        btn.onclick = function (){
            if(Notification.permission == "granted"){
                popNotice();
            }else if(Notification.permission != "denied"){
                Notification.requestPermission().then(function (permission){
                    popNotice()
                })
            }
        };
        function popNotice(){
            if(Notification.permission == "granted"){
                var notification = new Notification("你好:",{
                    body:"请问今晚有空吗",
                    icon:"http://image.zhangxinxu.com/左边头像地址"
                });
                notification.onclick = function (){
                    txt.innerHTML = new Date().toTimeString().split(" ")[0]+"收到信息";
                    notification.close();
                }
            }
        }
    }else{
        console.log("浏览器不支持Notification");
    }
})();
Copy after login

Notification.requestPermission() is a request that allows the browser to prompt whether to allow notifications. It returns "3" values ​​like Notification.permission. "granted" "default" "denied" The user allows notifications, the user There is no control yet, users dislike it

Summary

The above is the detailed content of Examples of H5 implementing desktop notification and prompt functions. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!