问题标签 [locomotivejs]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jquery - Locomotive Scroll:是否可以将 querySelector 与 URL 和锚标记一起使用?
我的导航中的链接使用带有锚标记的 URL (fe mysite.com/about#cv)。原因是即使我不在 fe about-page 上,我也想跳转/滚动到特定部分。通常这工作正常。但我正在使用机车滚动库。
我目前正在使用:
<script>$('.nav-link').on('click', function() {const slider = document.querySelector('#cv');locoScroll.scrollTo(slider)</script>
当我在锚点所在的页面上时,这很好用。但我希望能够从我网站上的任何地方访问特定部分。