0

这是关于 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 函数中工作?

4

2 回答 2

2

从函数中删除参数:

notification.onclick = function(itemLink) { // overrides itemLink in the global
                                            // object.

固定代码:

notification.onclick = function() { 
    window.focus(); 
    window.open(itemLink,'_blank' );
    this.cancel(); 
};
于 2012-05-20T09:18:25.213 回答
1

在名称冲突期间,局部变量优先。删除或重命名参数itemLink

notification.onclick = function(something_else) { 
    //global itemLink should be accessible
};
于 2012-05-20T09:18:43.127 回答