我已经创建了两个外部链接和两个部分包含 accordion 在每个。当我点击链接它滚动到其特定部分。我试图打开它的第一个 accordion 上的链接点击。
**https://jsfiddle.net/adampavlov/4s7dc09b/13/**第一个字符
$(document).ready(function(){
// Add smooth scrolling to all links
$(".explore-card a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
字符串
我试图打开它的第一个 accordion 上的外部链接点击。
1条答案
按热度按时间drkbr07n1#
将这些属性添加到第一个链接即可:
字符串
添加后,它看起来像这样:
型
https://jsfiddle.net/r1vd3jgp/