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
{{ message }}
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
if(window.Notification && Notification.permission !== "denied") {
Notification.requestPermission(function(status) { // 请求权限
if(status === 'granted') {
// 弹出一个通知
var n = new Notification('到货通知', {
body : '抢到啦抢到啦',
});
}
});
}
这样可以浏览器退到后台
The text was updated successfully, but these errors were encountered: