gpt4 book ai didi

javascript - 外部链接打不开

转载 作者:行者123 更新时间:2023-12-03 03:38:38 25 4
gpt4 key购买 nike

我对任何 JS 都是菜鸟,我有一个单页网站的菜单栏,可以滚动页面,但不会打开外部链接,请问你们中有人可以帮忙吗?代码如下,网址可查看http://protocol-labs.com/new

html

<div class="collapse navbar-collapse navbar-right" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#banner">Home</a></li>
<li class=""><a href="#service">Services</a></li>
<li class=""><a href="#about">About</a></li>
<li class=""><a href="#testimonial">Testimonial</a></li>
<li class=""><a href="contact.html">Contact</a></li>
</ul>
</div>

导致问题的 js

(function ($) {

// Add smooth scrolling to all links in navbar
$(".navbar a,a.btn-appoint, .quick-info li a, .overlay-detail a").on('click', function(event) {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
window.location.hash = hash;
});
});

//jQuery to collapse the navbar on scroll
$(window).scroll(function() {
if ($(".navbar-default").offset().top > 50) {
$(".navbar-fixed-top").addClass("top-nav-collapse");
} else {
$(".navbar-fixed-top").removeClass("top-nav-collapse");
}
});
})(jQuery);

最佳答案

您已阻止将默认值附加到您的锚定事件。这会阻止链接工作。

$(".navbar a,a.btn-appoint, .quick-info li a, .overlay-detail a").on('click', function(event) {
event.preventDefault(); // prevents link from working. Remove it and you should be good.

关于javascript - 外部链接打不开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45737360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com