当通过ajax加载HTML / LINK时,jQueryTOOLS覆盖灯箱无法正常工作

时间:2015-08-15 16:21:57

标签: javascript jquery ajax overlay jquery-tools

在开始之前,我已经研究过并发现了类似的上一个问题:Reinitialize jQuerytools Overlay on ajax loaded element

然而,"答案"对于那个问题建议使用.live()。我试图让我们jQuery 1.9 .live() is not a function使用.on()更新。

$(".overlay_load[rel]").on('click', 'a', function () {
    $(this).overlay().load();
    $(this).overlay().load();
    return false;
});

我承认,除了重新初始化新加载的HTML以便jQueryTOOLS Overlay可以访问'之外,我不会100%完全理解其他功能。到新加载的HTML。

我有一个页面通过AJAX加载HTML内容的部分。以下是加载的一个DIV的示例。

<div class="ajax-returned mytop">
    <span class="username"> drkwong </span> <br> 
    <span class="full-name">Andrew Kwong</span><br> 
    <span class="action-status"> 
        <span class="mt-icon ut3"></span> 
        <span class="autoship active">A</span>
        <span class="view_profile">
            <a href="/member/downline_tree_view/?view=tree_profile&amp;program=1&amp;view_userid=13" rel="#overlay">
                <img src="/inc/downline_tree/images/more_info.png" rel="#13">
            </a>
        </span> 
    </span>
</div>

<!-- overlayed element -->
<div class="apple_overlay" id="overlay">
    <!-- the external content is loaded inside this tag -->
    <div class="contentWrap"></div>
</div>

这个链接应该引用jQuery,然后加载jQueryTOOLS Overlay灯箱:

    <script>
            $(function() {
                // if the function argument is given to overlay,
                // it is assumed to be the onBeforeLoad event listener
                $("a[rel]").overlay({

                    mask: 'grey',
                    effect: 'apple',

                    onBeforeLoad: function() {

                        // grab wrapper element inside content
                        var wrap = this.getOverlay().find(".contentWrap");

                        // load the page specified in the trigger
                        wrap.load(this.getTrigger().attr("href"));
                    }
                });
            });
    </script>

这是我用来将外部页面加载到灯箱的jQuery:http://jquerytools.github.io/demos/overlay/external.html

它只是感觉它没有触发jQuery。

这是标题中的内容:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="/templates/public/2/downline/js/jquery.browser.min.js"></script>
<script type="text/javascript" src="/templates/public/2/downline/js/jquery.tools.min.js"></script>

jQueryTOOLS Overlay需要jquery.browser.min.js来访问浏览器。 https://github.com/gabceb/jquery-browser-plugin

编辑:

AJAX

var ids=new Array()
var node
var param={"action":"NodeDetailAll","admin":"1"}
var users=new Array()



function get_ids(){
    for(var i=0;i<nodes.length;i++){
        users.push("child_"+$(nodes[i]).attr("class"))
        ids.push($(nodes[i]).attr("class"))
    }
}

function get_nodes(){
    nodes = $("#chart [myattr*='descendent']")
    nodes= jQuery.makeArray(nodes);

    $.when(get_ids()).then(function(){
        $.each(ids,function(key,value){
            param[users[key]]=value
        })
    })        
}

function write_html(response){
    $.each(response,function(key,value){
      $("."+key).html(value)
    })
}

jQuery(document).ready(function() {
    $(".spinner-loader").fadeIn(200)

    $.when(get_nodes()).then(function(){

        $.post("~ajax_url~",param,function(response) { 

            response=jQuery.parseJSON(response)
            $.when(write_html(response)).done(function() {
                $(".spinner-loader").fadeOut(600)
                $("#chart").css("opacity","1")

                // is this where I would add the on()? //
                // I tried that, without success.  //
                // perhaps I need to modify the on() function? //

            })
        })
    })
})

2 个答案:

答案 0 :(得分:1)

您可以在ajax函数的回调上调用overlay绑定。另一件事是检查你的jQuery选择器,以确保你已经适当地配置它们,并且他们正在选择适当的元素来绑定你的事件。

根据jQuery文档:“事件处理程序仅绑定到当前选定的元素;它们必须存在于代码调用.on()时页面上。”

因此在我看来,在AJAX请求的回调中调用绑定功能将是最佳选择!也许如果您可以提供代码的简化版本,包含ajax请求,那么我可以尝试再看看:)

答案 1 :(得分:1)

使用其他解决方案。 jQueryTOOLS Overlay不再处于活动状态,并且使用了已弃用甚至已消除的jQuery函数。尝试解决所有这些问题已证明效率低下,并且就AJAX而言,使用最新版本的jQuery是不可能的。

正如@sparky FancyBox 2所建议的,提供了所需的解决方案。实施简单直观。