0

当单击图库中的图像而不是扩展页面上的图像时,有什么方法可以简单地打开网页?我确信解决方案(如果有的话)可能需要更改以下代码:

onclick="return hs.expand(this, inPageOptions )
4

2 回答 2

1

请参阅此演示库:http: //jsfiddle.net/roadrash/KtDpz/

使用hs.Expander.prototype.custom设置单击图库中的每个图像时要打开的 URL:

onclick="return hs.expand(this, inPageOptions, {url: 'http://roadrash.no/'})"


hs.Expander.prototype.onImageClick代码替换为:

// go to url when clicking the image
hs.Expander.prototype.onImageClick = function() {
    if (this.custom) {
        window.open(this.custom.url);
    }
    return false;
};
于 2013-07-18T14:35:54.197 回答
0

只是一个猜测,但尝试

onclick = "window.open('http://www.yoururl.com')";
于 2013-07-17T19:22:46.950 回答