这是关于 JS 变量范围的第 n 个问题,但我通读了其余部分并没有完全得到答案。
var notification = window.webkitNotifications.createNotification(
'image.png', // The image.
'New Post: ',// The title.
'New stuff'// The body.
);
var itemLink = 'http://pathtothefile.com';
notification.onclick = function(itemLink) {
window.focus();
window.open(itemLink,'_blank' );
this.cancel();
};
notification.show();
如何让在全局范围内定义的 itemLink 在 onclick 函数中工作?