vue2.0模拟锚点的实例
程序员文章站
2022-10-05 18:38:15
在vue项目中,因为采用路由跳转,会导致无法使用常规的a标签配合id的锚点功能。
解决办法:
在vue项目中,因为采用路由跳转,会导致无法使用常规的a标签配合id的锚点功能。
解决办法:
<a href="javascript:void(0)" rel="external nofollow" @click="goanchor('#anchor')"> 灰啊灰啊我的骄傲放纵</a>
methods: { goanchor(selector) { var anchor = this.$el.queryselector(selector) document.body.scrolltop = anchor.offsettop } }
17. 9. 20 更新: 以上在firefox有bug,修复如下:
methods: { goanchor(selector) { var anchor = this.$el.queryselector(selector) document.body.scrolltop = anchor.offsettop; // chrome document.documentelement.scrolltop = anchor.offsettop; // firefox } }
以上这篇vue2.0模拟锚点的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: nodejs acl的用户权限管理详解
下一篇: vue的mixins属性详解