我在我的HTML文檔的標記中有一堆link
標記。有什麼辦法可以把所有這些放在一個單獨的HTML文檔中,並且只是鏈接到那個文檔?包括單獨的HTML,其中包含代碼<head>
E.g把這個:
</head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Arvo:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lato:300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="scripts.js"></script>
<title>Home</title>
</head>
進入這個:
<head>
<link href="head.html" type="text/html">
<title>Home</title>
</head>
包含這些鏈接的分割文件head.html
?
包括你介意使用jQuery? – Amy 2014-11-03 12:25:28
看這裏:http://stackoverflow.com/questions/8988855/include-another-html-file-in-a-html-file – euvl 2014-11-03 12:26:27
@euvl燁,但在該解決方案,他們正在使用JQuery – Amy 2014-11-03 12:27:42