How to bind fancybox to dynamic added element?

后端 未结 5 556
梦谈多话
梦谈多话 2020-11-22 07:03

I use jquery fancybox 1.3.4 as pop form.

but I found fancybox can\'t bind to element dynamic added. for example when I add a html element to current document.

相关标签:
5条回答
  • 2020-11-22 07:47

    The easiest way to bind fancybox (v1.3.x) to dynamically added elements is:

    1: Upgrade to jQuery v1.7.x (if you haven't yet)

    2: Set your script using jQuery API on() + the focusin event.

    To make it work you need to find the parent element of your elements with class="ajaxFancyBox" as per your code above (or the parent of the parent as you need it) and attach jQuery on() to it so for example, having this html:

    <div id="container">
     <a class="ajaxFancyBox" href="image01.jpg">open image 01</a>
     <a class="ajaxFancyBox" href="image02.jpg">open image 02</a>
    </div>
    

    .. we will apply on() and focusin event to the element with id="container" (the parent) as in the example above, like:

    $("#container").on("focusin", function(){
     $("a.ajaxFancyBox").fancybox({
      // fancybox API options here
      'padding': 0
     }); // fancybox
    }); // on
    

    You can apply any fancybox option as you need. Additionally you may have different scripts for different type of content (inside the on() method) like:

    $("#container").on("focusin", function(){
     $("a.ajaxFancyBox").fancybox({
      // fancybox API options here
      'padding': 0
     }); // fancybox
     $("a.iframeFancyBox").fancybox({
      // fancybox API options here
      'padding': 0,
      'width': 640,
      'height': 320,
      'type': 'iframe'
     }); // fancybox
    }); // on
    

    IMPORTANT: the example above won't work like that on Chrome. The workaround is to add the tabindex attribute to all of your elements bound to fancybox like

    <div id="container">
     <a tabindex="1" class="ajaxFancyBox" href="image01.jpg">open image 01</a>
     <a tabindex="1" class="ajaxFancyBox" href="image02.jpg">open image 02</a>
    </div>
    

    that solves the issue and will work (as far as I know) in most browsers including IE7+.

    See my demo page here

    UPDATE: March 07, 2012.

    I was told that this method only works when you add new content to the page but not when you replace the content of the page.

    The method actually works on either of the two scenarios mentioned above. Just make sure that the new replacing content is also loaded inside the container where you applied the .on() method.

    See demo

    The tabindex workaround for Chrome also applies.

    0 讨论(0)
  • 2020-11-22 07:48

    You're specifying the wrong class name, try this instead:

    $(".fancybox").fancybox({padding: 0});
    
    0 讨论(0)
  • 2020-11-22 07:55

    As suggested in above comment , we can use following approach in this kind of problems ( binding element to dynamic elements ) -

    $("#container").on("focusin", function(){
    
        if($(this).hasClass("fancybox-bind")){                //check if custom class exist 
           return 0;                                          //now fancybox event will not be binded
        }else{                                                //add class to container
            $(this).addClass("fancybox-bind");
        }
    
        $("a.ajaxFancyBox").fancybox({                        // fancybox API options here
            'padding': 0
        }); // fancybox
    
       $("a.iframeFancyBox").fancybox({                       // fancybox API options here
         'padding': 0,
         'width': 640,
         'height': 320,
         'type': 'iframe'
       }); // fancybox
    }); // on
    
    0 讨论(0)
  • 2020-11-22 07:56

    I answered the question same like this you can find the answer at

    Appending dynamically generated html using jQuery does not play well with Fancybox

    0 讨论(0)
  • 2020-11-22 08:03

    You could try something like this maybe:

     $(document.body).append("<a href='home/index' class='fancybox' onclick='showFancybox()'/>");
    

    And then make a function to create and show Fancybox:

    function showFancybox(){
        $.fancybox(
                '<h2>Hi!</h2><p>Content of popup</p>',
                {
                        'autoDimensions'    : false,
                    'width'             : 350,
                    'height'            : 'auto',
                    'transitionIn'      : 'none',
                    'transitionOut'     : 'none'
                }
            );
    }
    
    0 讨论(0)
提交回复
热议问题