字母导航跳转react核心代码
Posted ljwk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字母导航跳转react核心代码相关的知识,希望对你有一定的参考价值。
componentDidMount() {
this.move();
}
skipToDep(e) {
let dom = document.getElementById(e); // 获取要跳至的字母节点
if (e === ‘#‘) {
this.props.scroller.scrollTo(0, 0);
} else {
this.props.scroller.scrollTo(0, -dom.offsetTop);
}
}
move() {
// 监听字母导航列表的touchmove事件
this.navigation.addEventListener(‘touchmove‘, e => {
const node = document.elementFromPoint(e.touches[0].clientX, e.touches[0].clientY); // 获取move时对应的节点
const reg = /^(#|[A-Z])/;
if(reg.test(node.innerText)) {
this.skipToDep(node.innerText);
}
});
}
以上是关于字母导航跳转react核心代码的主要内容,如果未能解决你的问题,请参考以下文章
react-native-tab-view 从反应导航屏幕跳转到特定选项卡