注:此方法不支持本地调试,请在http环境下测试
var options = {
dir: "auto",
body: '老师公开课火热直播中,戳这里进入!免费听 >',
requireInteraction: true,
icon: 'https://img.yutu.cn/yutu/2020/20200421/aaf1ed5391676d9b5cc659d8d8c35076.png'
};
var liveUrl = 'http://www.yutu.cn';
var title = '这里是标题';
if (Notification.permission === 'granted') {
var notification = new Notification(title, options); // 显示通知
notification.onclick = function() {
if ((/Safari/.test(navigator.userAgent) && !/Chrome/.test(navigator.userAgent))) {
location.href = liveUrl;
}