「jQuery入門」ajaxリクエストキャッシュを禁止するコード

方法1
$.ajax( {
url : “http://sample.net",
cache : false,
data : {
cityname : “tokyo"
},

} );

方法2
$.ajax( {
url : “http://sample.net",
cache : true,
param : {
cityname : “tokyo"
},
beforeSend : function( xhr ){
xhr.setRequestHeader(“If-Modified-Since", “Thu, 01 Jun 1970 00:00:00 GMT");
},

} );

JavaScript

Posted by arkgame