0

申し訳ありませんが、簡単な質問がありますが、わかりません。

ページの読み込み時に Fancybox 2 を使用して正常に動作する画像ポップアップを作成したいのですが、ユーザーが画像ポップアップをクリックすると、外部リンクに誘導され、成功しません。

これが私のコードです: <script type="text/javascript">
$(document).ready(function() {
$(".modal_link").fancybox().trigger('click');
}); </script>

そしてhtmlで: <a class="modal_link" href="image.PNG"></a>

4

2 に答える 2

1

試す

<script type="text/javascript">
$(document).ready(function() {
 $(".modal_link").fancybox({
  closeClick : true, // closes fancybox when clicking INSIDE of it
  afterClose : function(){
   // redirect to a new page after closing fancybox
   window.location = 'http://newsite.com/';
   // parent.location = 'http://newsite.com/'; // also works
  }
 }).trigger('click');
}); 
</script>
于 2012-08-19T21:09:33.430 に答える
0
    <script type="text/javascript">
jQuery(document).ready(function(){
    if (document.cookie.indexOf('visited=true') == -1) {
        var fifteenDays = 1000*60*60*24*15;
        var expires = new Date((new Date()).valueOf() + fifteenDays);
        document.cookie = "visited=true;expires=" + expires.toUTCString();
        $.fn.colorbox({width:"30%", inline:true, href:"#subscribe"});
    }
});

             </script>
于 2013-04-23T10:00:58.317 に答える