PHP
·
发表于 5年以前
·
阅读量:8290
function locationReplace(url) {
if (history.replaceState) {
history.replaceState(null, document.title, url);
history.go(0);
} else {
location.replace(url);
}
}