首页 > 代码库 > Chrome中显示桌面通知

Chrome中显示桌面通知

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
    <title>Google 桌面通知</title>
</head>
<body>
    <button id="btn">
        显示桌面通知</button>
    <script type="text/javascript">
        document.querySelector("#btn").addEventListener(‘click‘, notify, false);
 
        window.onload = notify;
 
         function notify() {
            if (window.webkitNotifications) {
                if (window.webkitNotifications.checkPermission() == 0) {
                    var notification_test = window.webkitNotifications.createNotification("", ‘标题‘, ‘内容‘ + new Date().getTime());
                    notification_test.display = function () { }
                    notification_test.onerror = function () { }
                    notification_test.onclose = function () { }
                    notification_test.onclick = function () { this.cancel(); }
 
                    //notification_test.replaceId = ‘Lan‘;
 
                    notification_test.show();
 
                } else {
                    window.webkitNotifications.requestPermission(notify);
                }
            }
        }
    </script>
</body>
</html>