Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经创建了一个桌面通知window.webkitNotifications.createNotification()。我已经看到 gmail 在重定向通知上使用了 onclick 事件,它是如何制作的?
window.webkitNotifications.createNotification()
我找到了解决方案:
var notification = window.webkitNotifications.createNotification(url,title,teaser); notification.onclick = function(x) { window.focus(); this.cancel(); $(location).attr('href',path);}; notification.show();