使用JQuery在新窗口中打开图像链接

前端之家收集整理的这篇文章主要介绍了使用JQuery在新窗口中打开图像链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<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)链接网址.我该怎么办?我已经尝试了很多选项来完成这项工作.谢谢.

解决方法

这应该工作!
<a target="_blank" href="http://your_url_here.html">Link</a>

希望这有助于更多细节,请参阅此处的答案Open link in new tab or window

原文链接:https://www.f2er.com/jquery/181120.html

猜你在找的jQuery相关文章