Tuesday, March 23, 2010

[AJAX] GET cache problem

避免cache的作法 (利用timestamp傳不同get參數)

 
在url後面加個 '?q=' +new Date().getTime()
 
 
    jQuery(".del").click( function() {
        delPicId = jQuery(this).attr("id").charAt(3);
        jQuery.getJSON("blah/"+delPicId +"?q="+new Date().getTime(),
            function(data){
                jQuery("#pic"+delPicId).attr("src", 'webroot?>img/blah.jpg');
            }
        );
    });

No comments: