You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>笔记本直接引用外部 html 文件</title>
|
|
<link rel="stylesheet" href="./css/index.css">
|
|
<!-- 相对于notebook文件的路径 -->
|
|
<link rel="stylesheet" href="./WebSite/css/index.css">
|
|
|
|
</head>
|
|
<body>
|
|
<h2>html中引用的外部css文件、js文件路径要相对于笔记本文件而不是html本身的路径。</h2>
|
|
<div class="container">
|
|
<div class="item item1" onclick="alert(1)"></div>
|
|
<div class="item item2"></div>
|
|
<div class="item item3"></div>
|
|
<div class="item item4"></div>
|
|
<div class="item item5"></div>
|
|
<div class="item item6"></div>
|
|
<div class="item item7"></div>
|
|
</div>
|
|
<script src="js/index.js"></script>
|
|
<!-- 相对于notebook文件的路径 -->
|
|
<script src="./WebSite/js/index.js"></script>
|
|
</body>
|
|
</html> |