0
$.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 效果爆炸的结果打开。我的英语不好。对不起

4

1 回答 1

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);
    }           
});
于 2013-07-20T07:16:47.410 回答