在web 开发中,选择列表分类,在中商品, 详情页面后,返回的时候我们想定位到原来选择的分类 就需要借助window.history.replaceState来实现

   function getProductUrl(cid, number) {
if (history && history.pushState) {
// 替换当前url,便于返回的时候定位
window.history.replaceState(null, "", "/xxxx/Index/" + cid);
}
window.location.href = '/product/' + number;
}
05-11 22:33