我希望能够为每个通知设置一个链接/永久链接,所以当用户点击它时;然后他被带到固定链接位置,
我已经看到了这个答案,它的解决方案有点不同,因为使用了静态链接,
我想以某种方式:
var noti = window.webkitNotifications.createNotification(
'http://funcook.com/img/favicon.png',
'HTML5 Notification',
'HTML5 Notification content...',
'http://mycustom.dynamic.link.com/' /* invented code */
)
noti.onclose = function(){ alert(':(') };
noti.onclick = function(){
window.location.href = $(this).url; /* invented code */
};
noti.show();
任何机会?(我真的不喜欢静态 html 文件解决方案...我想保留这种语法)