当单击图库中的图像而不是扩展页面上的图像时,有什么方法可以简单地打开网页?我确信解决方案(如果有的话)可能需要更改以下代码:
onclick="return hs.expand(this, inPageOptions )
当单击图库中的图像而不是扩展页面上的图像时,有什么方法可以简单地打开网页?我确信解决方案(如果有的话)可能需要更改以下代码:
onclick="return hs.expand(this, inPageOptions )
请参阅此演示库: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;
};
只是一个猜测,但尝试
onclick = "window.open('http://www.yoururl.com')";