1

我的问题是:

我有一些外部页面,当我点击派对的主照片时,我会从我fotos1.asp的内部调用。#fotos_dentroindex.asp

这张主照片在另一个 div#fotos中。我使用一些 jquery 脚本来处理这个问题。

我有一些滚动条脚本.. 那么发生了什么?

fotos1.asp没有出现在#fotos_dentro.

这是我的脚本:

$(function(){

   $("#fotos_dentro").hide();

    $('.fotos1').live('click', function(e) {
        e.preventDefault();
        var h = $(this).attr('href');
        $.get(h, function() {
            $("#fotos").fadeOut("slow", function() {
                $("#fotos_dentro").show(function(){
                    $(this).load(h).fadeIn("slow", function(){
                        $("#mcs_container").mCustomScrollbar("vertical",400,"easeOutCirc",1.05,"30","yes","yes",10);
                    });
                });
            });
        });
    });
});

这是我的 HTML:

<div class="conteudo">
    <!-- comeco sroll -->
    <div id="mcs_container" class="rolagem">
        <div class="customScrollBox">
            <div class="container">
                <div class="content">
                <div id="fotos_dentro"></div>
                <div id="fotos">
                    <!-- HERE IS MY ASP PROGRAMMING -->
                </div>
                </div>
            </div>
            <div class="dragger_container">
                <div class="dragger"></div>
            </div>
        </div>
    </div>
    <!-- fim scroll -->
</div>

这是我的网站:http ://www.alsite.com.br/luxxx/ - 点击GALERIA查看问题。

4

1 回答 1

1

.load在这种情况下是多余的,只需附加返回的 html。

$(function() {

    $("#fotos_dentro").hide();

    $('.fotos1').live('click', function(e) {
        e.preventDefault();
        var h = $(this).attr('href');
        $.get(h, function(data) {
            $("#fotos").fadeOut("slow", function() {
                $("#fotos_dentro").html(data).fadeIn("slow", function() {
                    $("#mcs_container").mCustomScrollbar("vertical", 400, "easeOutCirc", 1.05, "30", "yes", "yes", 10);
                });
            });
        });
    });
});​
于 2012-07-18T14:31:23.353 回答