使用 JQuery 在新窗口中打开图像链接
Posted
技术标签:
【中文标题】使用 JQuery 在新窗口中打开图像链接【英文标题】:Open image link in new windows with JQuery 【发布时间】:2014-10-21 05:47:43 【问题描述】: <script type="text/javascript">
(function($)
$(window).load(function()
if(jQuery.isFunction(jQuery.fn.prettyPhoto))
$.prettyPhoto.open(
"images/ad1.jpg", // Image to be opened
"title", // Title of the pop-up
"desc." // The description
);
setTimeout(function()
$.prettyPhoto.close();
, 8000); // autoclose after 8 seconds
else
console.log("PrettyPhoto is not defined."); // log this message
);
)(jQuery);
</script>
我正在尝试制作要在新标签窗口中打开的图片 (ad1.jpg) 链接网址。我该怎么做?我已经尝试了很多选择来完成这项工作。谢谢。
【问题讨论】:
你想在新标签页还是在弹出窗口中打开它? 为什么需要在新标签而不是窗口中打开它? 【参考方案1】:这应该可行!
<a target="_blank" href="http://your_url_here.html">Link</a>
希望这有助于了解更多详情,请在此处查看答案Open link in new tab or window
【讨论】:
这只是html而不是js以上是关于使用 JQuery 在新窗口中打开图像链接的主要内容,如果未能解决你的问题,请参考以下文章