$.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效果爆炸的结果打开。我的英语不太好。
答案 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);
}
});