The following will prevent all future AJAX requests from being cached, regardless of which jQuery method you use ($.get, $.ajax, etc.)
$(document).ready(function() {
$.ajaxSetup({ cache: false });
});
you should use $.ajax, which will allow you to turn caching off for that instance:
$.ajax({url: "myurl", success: myCallback, cache: false});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…