我剛剛在000webhost上啓動了一個簡單的網站。我上傳以下index.html文件:CSS不能在000webhost上工作
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tabs</title>
<meta charset="utf-8">
<meta name="description" content="Bootstrap.">
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body style="margin:20px auto">
<div class="container">
<div class="row header" style="text-align:center;color:green">
<ul class="nav nav-tabs">
<li class="active"><a>Tab 1</a></li>
<li><a>Tab 2</a></li>
<li><a>Tab 3</a></li>
</ul>
<p><br></p>
</div>
</div>
</body>
本地,什麼我希望它顯示爲,如下: What I want.
然後呢是上顯示出來webhost,如下所示: Not what I want.
它沒有使用我在頁面頂部添加的CSS/js腳本(bootstrap stuff)。任何想法爲什麼?
在瀏覽器中檢查您的網絡檢查器。你的資產是否正確加載? – tadman
tbh我對這個東西很陌生,我不確定如何檢查我的資產是否正確加載。這裏是網站:https://temptry.000webhostapp.com/。編輯:確定,在控制檯下的鉻開發人員工具,它表示腳本/工作表是不安全的,沒有加載。任何想法爲什麼? –