这是滑块代码的一部分。
如何更改此代码以打开页面链接,而不是prettyphoto的灯箱。
if (typeof this.options.map[middle].link_url != 'undefined') {
this.$prettyPhoto_a.attr('href', this.options.map[middle].link_url);
} else {
this.attr('href', '');
}
答案 0 :(得分:0)
如果要重定向页面,请使用window.location.href
(typeof this.options.map[middle].link_url != 'undefined') {
window.location.href = this.options.map[middle].link_url;
} else {
this.attr('href', '');
}
或强>
如果您要打开包含该网址的标签
,请使用window.open(url,'_blank')
(typeof this.options.map[middle].link_url != 'undefined') {
window.open(this.options.map[middle].link_url,'_blank');
} else {
this.attr('href', '');
}