將多個html檔案合併一個檔案的方法:先新建一個【X.html】檔案;然後在【X.html】主題循環加入iframe標籤,程式碼為【
本教學操作環境:windows7系統、html5版,DELL G3電腦,此方法適用於所有品牌電腦。
將多個html檔案合併一個檔案的方法:
1,新建一個X.html檔案;
2,在X.html主題循環加入iframe標籤,例如:
<iframe name="iframe1" marginwidth=0 marginheight=0 width=100% height=“600” src="你的XXX.html文件(例如:D:\a.html)" frameborder=0></iframe>
<iframe name="iframe2" marginwidth=0 marginheight=0 width=100% height=“600” src="你的XXX.html文件(例如:D:\b.html)" frameborder=0></iframe>
<iframe name="iframe3" marginwidth=0 marginheight=0 width=100% height=“600” src="你的XXX.html文件(例如:D:\c.html)" frameborder=0></iframe>
相關學習推薦:html影片教學
##
以上是如何將多個html檔案合併一個文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!