为了账号安全,请及时绑定邮箱和手机立即绑定

允许通知而不单击按钮

允许通知而不单击按钮

慕沐林林 2022-09-23 09:38:14
我想询问有关通知的信息现在我有这个通知与“通知我”按钮返回此通知通知允许但我仍然使用此按钮来触发推送通知<button onclick="notifyMe()">Notify me!</button>这是贾夫脚本函数 function notifyMe() {           function AutoRefresh( t ) {               setTimeout("location.reload(true);", t);            }        // Let's check if the browser supports notifications        if (!("Notification" in window)) {            alert("This browser does not support desktop notification");        }        // Let's check whether notification permissions have already been granted        else if (Notification.permission === "granted") {            // If it's okay let's create a notification            var notification = new Notification("Hi there!");        }        // Otherwise, we need to ask the user for permission        else if (Notification.permission !== "denied") {            Notification.requestPermission().then(function (permission) {            // If the user accepts, let's create a notification            if (permission === "granted") {                var notification = new Notification("Hi there!");            }            });        }        }我想要的是通知自动显示,而无需按钮触发如何做到这一点?
查看完整描述

1 回答

?
红糖糍粑

TA贡献1815条经验 获得超6个赞

试试这个,


jQuery(document).ready(function(){

  notifyMe();

});

然后,它将自动触发通知。


查看完整回答
反对 回复 2022-09-23
  • 1 回答
  • 0 关注
  • 84 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信