ifModified Boolean Default: false Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header. cache Boolean Default: true Added in jQuery 1.2, if set to false it will force the pages that you request to not be cached by the browser. 复制代码 代码如下: $.ajax({ type: "GET", url: "static/cache.js", dataType: "text", cache:false, ifModified :true });