a标签可以不压栈吗,类似于loacation.replace()
页面中用了<a></a>
标签跳转,但是不想生成历史记录,希望用户点击回退按钮时,不会跳转回这个页面,类似于location.replace()
的作用。请问有办法吗?
补充:因为href还是动态绑定的,如果在href中加入javascript的代码编辑器会报'v-bind' directives require an attribute value.
的错。
<div class="filtrate-wrap">
<a :href="javascript:location.replace('selector.html?title=地区&page=xkResult1&filter=' + JSON.stringify(filter))" class='filtrate-item'>
{{ filter.province === '所有' ? '地区' : filter.province }}
</a>
<a :href="'selector.html?title=类型&page=xkResult1&filter=' + JSON.stringify(filter)" class='filtrate-item'>
{{ filter.type === '所有' ? '类型' : filter.type }}
</a>
<a :href="'selector.html?title=层次&page=xkResult1&filter=' + JSON.stringify(filter)" class='filtrate-item'>
{{ filter.level === '所有' ? '层次' : filter.level }}
</a>
</div>
回答
href="javascript:location.replace('url')"
这样是可以,但好像并不是题主想要的,以我的了解是没有的,看会不会被打脸吧
不执行js的话 自带是木有这个功能的
新开页面?target="_blank"