您的当前位置:首页正文

跳转链接时加个时间戳

2024-11-07 来源:个人技术集锦

链接有?,直接加&参数;没有,加再加参数

// url this.url
// t 时间戳,也可timestamp
location.href = this.url.indexOf("?")>-1?`${this.url}&t=${Date.now()}`:`${this.url}?t=${Date.now()}`;
显示全文