用js给超链接上加个随机数,这样就可以使网页避免缓存了

function add_rand(){
    rand = Math.random();
    $('a').each(function(){
        href = $(this).attr('href');
        if (href.length == 0 || href.indexOf('javascript') > -1) return;
        else if(href.indexOf('?') > -1){
            $(this).attr('href', href + '&' + rand);
        }else{
            $(this).attr('href', href + '?' + rand);
        }
    });
}

转自 https://blog.csdn.net/werewolf_st/article/details/50116481

你可能感兴趣的:(jquery)