gpt4 book ai didi

html - Bootstrap CDN 未加载

转载 作者:太空狗 更新时间:2023-10-29 15:32:16 25 4
gpt4 key购买 nike

一个简单但烦人的错误..我无法使用 cdn 加载 Bootstrap css这是简单的代码

         <html>
<head>
<title>Header template</title>

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">

<!-- Latest compiled and minified JavaScript -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>

</head>
<body>
<button class="btn btn-default">Hello World</button>
</body>
</html>

最佳答案

有两种情况可能会导致这种情况:

  • 显而易见的是,您应该删除第一个链接中的空格(看起来您已经编辑过了)

    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">

  • 您如何查看此文件?如果它不是通过网络服务器提供的(因此是通过 https 的 http),那么无协议(protocol)链接将不起作用。您的浏览器是否显示 file:///地址栏中的等?然后添加 http:////netdna.bootstrapcdn.com


<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>

关于html - Bootstrap CDN 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23357102/

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