主頁 > 知識庫 > HTML5實現(xiàn)桌面通知 提示功能

HTML5實現(xiàn)桌面通知 提示功能

熱門標簽:黃島區(qū)地圖標注 成都智能外呼系統(tǒng)平臺 南寧點撥外呼系統(tǒng)哪家公司做的好 四川點撥外呼系統(tǒng) 江蘇智能電銷機器人哪家好 云南大理400電話申請官方 電銷機器人電話用什么卡 鎮(zhèn)江智能外呼系統(tǒng)有效果嗎 當涂高德地圖標注

具體代碼如下所示:

<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");
    }
})();

Notification.requestPermission()是個請求 ,讓瀏覽器出現(xiàn)是否允許通知的提示 和 Notification.permission 一樣 返回 "3"個值 "granted" "default" "denied" 戶允許通知, 用戶目前還沒有管, 用戶嫌棄

總結(jié)

以上所述是小編給大家介紹的HTML5實現(xiàn)桌面通知 提示功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

標簽:咸寧 酒泉 西寧 廣西 淮安 十堰 佳木斯 南京

巨人網(wǎng)絡通訊聲明:本文標題《HTML5實現(xiàn)桌面通知 提示功能》,本文關(guān)鍵詞  HTML5,實現(xiàn),桌面,通知,提示,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML5實現(xiàn)桌面通知 提示功能》相關(guān)的同類信息!
  • 本頁收集關(guān)于HTML5實現(xiàn)桌面通知 提示功能的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章