字母导航跳转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 从反应导航屏幕跳转到特定选项卡

iOS小技能:跳转到地图APP(应用外导航)

[RN] React Native FlatList跳转到顶部/底部

片段和活动之间的核心区别是啥?哪些代码可以写成片段?