You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(!("Notification"inwindow)){//alert("This browser does not support desktop notification");}if(Notification.permission!=='denied'){//判断是否授权,没授权先授权在通知Notification.requestPermission(function(permission){// 如果用户同意,就可以向他们发送通知if(permission==="granted"){varnotice_=newNotification('通知',{body: '你有一条信息'});notice_.onclick=function(){//单击消息提示框,进入浏览器页面window.focus();}}});}if(Notification.permission==='denied'){//已授权直接通知Notification.requestPermission(function(permission){// 如果用户同意,就可以向他们发送通知if(permission==="granted"){varnotice_=newNotification('通知',{body: '你有一条信息'});notice_.onclick=function(){//单击消息提示框,进入浏览器页面window.focus();}}});}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: