标签:tps bsp navig 分享图片 log 分享 局部刷新 win href
console.log(window.navigator)
console.log(window.navigator.userAgent)
console.log(window.location)
//经常使用的方法,跳转页面
window.location.href = ‘https://www.luffycity.com‘
//是全局刷新,尽量少用 == 》 对应的有 局部刷新
window.location.reload();
setTimeout(function(){
window.location.reload();
},3000)
标签:tps bsp navig 分享图片 log 分享 局部刷新 win href
原文地址:https://www.cnblogs.com/beallaliu/p/9349047.html