你可以在设置 href 的时候在后面添加一个 query string,例如当前时间,等于是强制更新
$.post('ajax/1.php',function(data) {
var now = new Date().getTime()
$("link[href='css/1.css']").attr('href','css/1.css?' + now)
})
function addCSS() {var link = document.createElement('link')
link.type = 'text/css'
link.rel = 'stylesheet'
link.href = '/Content/Site.css'
document.getElementsByTagName("head")[0].appendChild(link)
}
用这个方法试试,把这个link添加到head下面