gpt4 book ai didi

javascript - 本地 Bootstrap nav-tab 工作,但不能从 github 页面远程

转载 作者:行者123 更新时间:2023-11-28 05:28:16 24 4
gpt4 key购买 nike

编辑: 问题已解决,因此我删除了我的 Github 链接。 Github 页面需要为每个链接的脚本建立 https 安全连接。还要经常检查控制台!

我遇到了一个奇怪的错误,如果我将 index.html 拖放到 Firefox 或 chrome 中, Bootstrap 导航选项卡会工作,并且当我在“艺术”和“恢复”之间单击时选项卡会转换选项卡内容标签。但是,如果我将我的网页推送到 Github 页面并通过 Github 访问该页面,然后单击另一个“艺术”选项卡,它将无法正常工作。该链接将更改为“#Art”,但选项卡内容不会转换。

代码如下:

<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style/w3.css">
<link rel="stylesheet" href="style/darkly.css">
<link rel="stylesheet" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style/socialbuttons.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

</head>
<body>
<ul class="nav nav-tabs">
<li id="resume-tab" class="active"><a data-toggle="tab" href="#Resume">Resume</a></li>
<li id="art-tab"><a data-toggle="tab" href="#Art">Art</a></li>
</ul>

<div class="tab-content main-body">

<div id="Resume" class="tab-pane fade in active">
<div class="texts container">
<p>resume tab</p>
</div> <!--close container-->
</div><!--close Resume-->


<div id="Art" class="tab-pane fade images">
<div class="container">
<p>art tab</p>
</div><!--close container-->
</div> <!--close images -->
</div> <!--close tab-content main-body -->

</body>
</html>

如果您保存 .html 文件并将其拖到浏览器中,选项卡切换会起作用,但如果我将其托管在 Github 页面上,选项卡切换就会中断。

我关注了 w3 学校的教程:

http://www.w3schools.com/bootstrap/bootstrap_tabs_pills.asp

最佳答案

Mixed Content: The page at 'https://theonlywei.github.io/' was loaded over 
HTTPS, but requested an insecure script
'http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'. This
request has been blocked; the content must be served over HTTPS.

有时打开控制台会有所帮助,您需要使用:

https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js

所以你必须找到<script>标记导入 bootstrap.js 的位置并将 url 更正为 https

关于javascript - 本地 Bootstrap nav-tab 工作,但不能从 github 页面远程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38653936/

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