javascript
  • html
  • css
  • hyperlink
  • 2014-11-03 81 views 0 likes 
    0

    我在我的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

    +0

    包括你介意使用jQuery? – Amy 2014-11-03 12:25:28

    +0

    看這裏:http://stackoverflow.com/questions/8988855/include-another-html-file-in-a-html-file – euvl 2014-11-03 12:26:27

    +0

    @euvl燁,但在該解決方案,他們正在使用JQuery – Amy 2014-11-03 12:27:42

    回答

    0

    您可以在一個樣式表中的所有樣式表與包括法類似如下:

    CSS:

    include 'http://fonts.googleapis.com/css?family=Arvo:700' 
    include 'http://fonts.googleapis.com/css?family=Lato:300' 
    include 'http://fonts.googleapis.com/css?family=Roboto:300' 
    

    ,然後鏈接就在主CSS文件。

    -1

    簡短的答案是框架。那就是如果你只想使用'html'。然而,幀是不好的練習tbh,特別是這個。

    你可以做 '包括' 使用jQuery太:

    <script> 
    $(function(){ 
        $("#yourdiv").load("includefile.html"); 
    }); 
    </script> 
    

    的另一種方法是用PHP

    http://php.net/manual/en/function.include.php

    +0

    他沒有問jQuery標記問題。 – Amy 2014-11-03 12:28:27

    +0

    因此,我給了3個選項,包括一個html唯一的解決方案.. – 2014-11-03 12:29:20

    相關問題