使用JQuery在新选项卡中打开图像链接

时间:2014-08-27 16:36:00

标签: javascript jquery html

我需要一些帮助。我正在尝试在新标签页中打开图像(ad1.jpg)链接网址。我该怎么做?我已经尝试了很多选项来完成这项工作。谢谢

<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>

0 个答案:

没有答案