$ .get上有多个回调

时间:2009-11-26 14:33:14

标签: jquery get

这是代码:

<script>
    $(document).ready(function(){
        $.get("realisations.shtml",function(data){$('#realisations').empty().append(data)});
    });
</script>

我需要执行$(“。toexpand”)。hide();在确定数据被加载到div

之后

这个尝试不起作用:

<script>
    $(document).ready(function(){
        $.get("realisations.shtml",function(data){$('#realisations').empty().append(data)},function(){$(".toexpand").hide()});
    });
</script>

3 个答案:

答案 0 :(得分:2)

$(document).ready(function(){
    $.get("realisations.shtml",function(data) {
        $('#realisations').empty().append(data);
        $(".toexpand").hide();
    })
});

答案 1 :(得分:0)

<script>
$(document).ready(function(){
    $.get("realisations.shtml",function(data) { 
       $('#realisations').empty().append(data);
       $(".toexpand").hide();
    });
});
</script>

答案 2 :(得分:0)

你有没有使用$()。load()?

的原因
$(document).ready(function(){
    $('#realisations').load("realisations.shtml", function() {
        $(".toexpand").hide();
    });
});