当用户单击缩略图时,我试图在新选项卡中打开图像,但即使我尝试了许多不同的解决方案,但它们都没有奏效。
我正在发布 jquery 代码:
$('#imagelink').click(function() {
//location.href = $('#imagelink').attr("href"); //It is correct!
// window.location.href = this.id + '.html'; //It is correct!
// window.open($('#imagelink').attr("href"), '_blank');
// $.winOpen($('#imagelink').attr("href"), "windowName", { fullscreen: "no", height: "600px", toolbar: 1, width: 600 }); //It is correct!
window.location = $.myURL("index", $(this).attr("href"));//It is correct!
});
如您所见,我已经尝试了上述所有五个方面,并且所有这些都在同一个选项卡中打开了图像,这不是我想要的。
我还发布了包含 html 的 jquery 代码(这包含在单独的文件中):
new_span.append('<a id="imagelink" href="'+ new.link +'"><img src="' + new.url +'" height=50px width="50px" /></a>');
任何形式的帮助表示赞赏。