我正在尝试在我的网站上实现对 WebKit 的本机桌面通知的支持。当我尝试请求用户使用通知的许可时,绝对没有任何反应。例如,以下 HTML 不会提示 Chrome 请求我的许可:
<html lang="en">
<head></head>
<body>
<h1>Testing</h1>
<script>
window.webkitNotifications.requestPermission();
</script>
</body>
</html>
我知道我的 Chrome 版本没有问题,因为其他网站(例如http://www.html5rocks.com/tutorials/notifications/quick/)运行良好:我可以看到提示和后续通知。