我正在使用createHTMLNotification
chrome 扩展。通知的 html 中包含一个链接。我想弄清楚的是如何在单击链接时关闭通知。我的代码如下
var notification = window.webkitNotifications.createHTMLNotification(
"notification.html"
);
notification.show();
notification.html 页面上的代码填充数据。此页面包含 jquery 库。当我尝试这样做时:
$('#title > a').click(function() {
notification.cancel();
}
这当然不起作用,因为此 html 页面上的通知是未知的。我也尝试notification.onshow
在我创建通知的代码的第一部分执行一个,但这也没有产生任何结果。