84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
如何实现网页qq的跨页面的消息提醒?
光阴似箭催人老,日月如移越少年。
使用的 postMessage ??
html5有个新特性。当有消息是调用这个函数,就可以跨页面消息提示,你可以在控制台测试下Notification.requestPermission(function(status) {
//status是授权状态,如果用户允许显示桌面通知,则status为'granted' console.log('status: ' + status); //permission只读属性 var permission = Notification.permission; //default 用户没有接收或拒绝授权 不能显示通知 //granted 用户接受授权 允许显示通知 //denied 用户拒绝授权 不允许显示通知 console.log('permission: ' + permission); });
new Notification("sir, you got a message", {
body: 'you will have a meeting 5 minutes later.'
});
使用的 postMessage ??
html5有个新特性。当有消息是调用这个函数,就可以跨页面消息提示,你可以在控制台测试下
Notification.requestPermission(function(status) {
new Notification("sir, you got a message", {
});