function fnUrlReplace(href) {
if (href && /^#|javasc/.test(href) === false) {
if (history.replaceState) {
history.replaceState(null, document.title, href.split(’#’)[0] + ‘#’);
location.replace(’’);
} else {
location.replace(href);
}
}
};
fnUrlReplace(href); //跳转
可以避免ios下面出现前进后退白条