我按照使用通知API中给出的说明进行操作。此外,我还面临着许多类似以下的问题,因为我在<head>
部分中添加了document.querySelector()
:
Uncaught TypeError: Cannot call method 'addEventListener' of null
现在我有了以下来源,在这里我可以检查通知支持和查看通知权限链接。
指导我如何以更简单的方式引入通知。此外,我尝试过这个:
$("#html").click(function() {
if (window.webkitNotifications.checkPermission() == 0) {
createNotificationInstance({ notificationType: 'html' });
} else {
window.webkitNotifications.requestPermission();
}
});
现在我被这个来源卡住了。我需要生成HTML&简单通知。我是不是错过了什么?请引导我。
来源:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Desktop Notifications</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
function checkNotifications() {
if (window.webkitNotifications)
alert("Notifications are supported!");
else
alert("Notifications are not supported for this Browser/OS version yet.");
}
function createNotificationInstance(options) {
if (window.webkitNotifications.checkPermission() == 0) { // 0 is PERMISSION_ALLOWED
if (options.notificationType == 'simple') {
return window.webkitNotifications.createNotification('icon.png', 'Notification Title', 'Notification content...');
} else if (options.notificationType == 'html') {
return window.webkitNotifications.createHTMLNotification('http://localhost/');
}
} else {
window.webkitNotifications.requestPermission();
}
}
</script>
<style type="text/css">
* {font-family: Verdana, sans-serif;}
body {font-size: 10pt; margin: 0; padding: 0;}
p {margin: 5px;}
a {color: #09f; text-decoration: none;}
a:hover {color: #f00;}
</style>
</head>
<body>
<p><strong>Desktop Notifications</strong></p>
<p>Lets see how the notifications work in this browser.</p>
<p>
<a href="#" onclick="checkNotifications(); return false;">Check Notification Support</a>.
Next <a href="#" onclick="alert('Notifications are ' + ((window.webkitNotifications.checkPermission() == 0) ? '' : 'not ') + 'allowed!'); return false;">Check Notification Permissions</a>
and if permissions are not there,
<a href="#" onclick="window.webkitNotifications.requestPermission(); return false;">Request Permissions</a>.
Create a
<a href="#" id="text">Simple Notification</a>
or
<a href="#" id="html">HTML Notification</a>.
</p>
</body>
<script type="text/javascript">
document.querySelector("#html").addEventListener('click', function() {
if (window.webkitNotifications.checkPermission() == 0) {
createNotificationInstance({ notificationType: 'html' });
} else {
window.webkitNotifications.requestPermission();
}
}, false);
document.querySelector("#text").addEventListener('click', function() {
if (window.webkitNotifications.checkPermission() == 0) {
createNotificationInstance({ notificationType: 'simple' });
} else {
window.webkitNotifications.requestPermission();
}
}, false);
</script>
</html>
创建通知后,您需要对其调用show()
,因此不只是:
createNotificationInstance({ notificationType: 'simple' });
你需要做:
var n = createNotificationInstance({ notificationType: 'simple' });
n.show();
另一件事是:在执行jQuery代码时,将其封装在中
$(document).ready(function() {
// ...
// your jQuery code
// ...
});
当使用头中的jQuery对DOM执行操作时,DOM尚未构建。$(document).ready
等待DOM构建完成,然后您可以保存地访问和操作它
以下是一个工作示例:http://jsfiddle.net/fkMA4/
BTW:我认为HTML通知已被弃用,请参阅此处:http://www.html5rocks.com/en/tutorials/notifications/quick/?redirect_from_locale=de
带有HTML内容的通知已被弃用。示例和文本已进行了相应的修改。