我想将我$.post
的呼叫转换为$.ajax
呼叫,因为我需要为每个呼叫清理缓存。
我的$.post
电话如下:
$.post("test",
function(data) {
$("#test").html(data);
initTest();
}
).success(function(){
$('.box1').hide("slide", {direction: "left"}, 1000);
$('.box3').show("slide", {direction: "right"}, 1000);
});
我试过这个,但它不起作用......
$.ajax({
type: "POST",
url: "test",
success: function (data) {
$("#test").html(data);
$('.box1').hide("slide", {direction: "left"}, 1000);
$('.box3').show("slide", {direction: "right"}, 1000);
},
dataType: "json",
cache: false
});