How do I make fancybox href dynamic?

后端 未结 5 448
北海茫月
北海茫月 2020-11-30 11:01

I have the following fancybox code:

$(\'.fancybox\').fancybox({
             \'autoScale\' : false,
             \'href\' : $(\'.fancybox\').attr(\'id\'),
           


        
5条回答
  •  南方客
    南方客 (楼主)
    2020-11-30 11:20

    Have you tried this?

    $('.fancybox').each(function(){
        $(this).fancybox({
             'autoScale' : false,
             'href' : this.id,
             'type':'iframe',
             'padding' : 0,
             'closeClick'  : false,
              //some other callbacks etc
        });
    });
    

提交回复
热议问题