<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>