在IE broswer中,使用Ajax不論怎麼重新整理都是一樣的訊息,
而在其他broswer中卻沒有這樣的問題,
這時候只要加上cache: flase,這行就解決了
$ajax({
beforeSend: function(){
before();
},
type: 'get'
url:'../a/b.cgi',
cache: false,
success: function(){
alert('success');
}
});
沒有留言:
張貼留言