结果爆炸爆炸

时间:2013-07-20 07:03:21

标签: jquery

$.ajax({
    type    : 'GET',
    dataType: 'html',
    url     : 'data.php',
    data    : dataString,
    success : function(callback){           
        $('.opendiv').html(callback);
        $('.opendiv').explode(callback); // ???


    },
    error   : function(error){
        alert(error);
    }           
}); 

我想用Ajax ui效果爆炸的结果打开。我的英语不太好。

1 个答案:

答案 0 :(得分:0)

explode()的参数应该是碎片的数量,这应该是一个完美的正方形。试试这个:

$.ajax({
    type    : 'GET',
    dataType: 'html',
    url     : 'data.php',
    data    : dataString,
    success : function(callback){           
        $('.opendiv').html(callback).toggle("explode");
    },
    error   : function(error){
        alert(error);
    }           
});