手把手教你在html中引入另一個html檔的方法(詳解)

烟雨青岚
發布: 2020-06-29 11:40:28
轉載
16278 人瀏覽過

手把手教你在html中引入另一個html檔的方法(詳解)

html中引入呼叫另一個html的方法,嘗試了好幾種,都列出來: 

其中第一個是最好的,其他的方法,可以試試看,是不是適合你目前專案

一、p $(“#page1”).load(“b.html”) 

參考程式碼:

<body>
    <p id="page1"></p>
    <p id="page2"></p>
    <script>
          $("#page1").load("page/Page_1.html");
          $("#page2").load("page/Page_2.html");    </script></body>
登入後複製

二、iframe 

參考程式碼:

<head>
</head>
<body>
   <p id="page1">
        <iframe align="center" width="100%" height="170" src="page/Page_1.html"  frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no">
        </iframe>
   </p>
   <p id="page2">
        <iframe align="center" width="100%" height="170" src="page/Page_2.html"  frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no">
        </iframe>
   </p>
</body>
登入後複製

三、object引入 

參考代碼:
<head>
    <object style="border:0px" type="text/x-scriptlet" data="page/Page_1.html" width=100% height=150>
    </object></head>
登入後複製
四、import引入 

#參考代碼:

<head>
    <link rel="import" href="page/Page_1.html" id="page1"></head><body>
    <script>
        console.log(page1.import.body.innerHTML);    </script></body>
登入後複製

參考文章:https://www.web-tinker.com /article/20637.html

五、bootstrap的panel元件,或是easyui的window元件,有點類似這個效果.

########### ##########感謝大家的閱讀,希望大家收益多多。 ######本文轉自: https://blog.csdn.net/arvin0/article/details/56839242######推薦教學:《###HTML教學###》###

以上是手把手教你在html中引入另一個html檔的方法(詳解)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板