html中引入调用另一个html的方法
html中引入调用另一个html的方法,尝试了好几种,都列出来:
其中第一种是最好的(要部署到服务器上),其他的方法,可以尝试看看,是不是适合你当前项目
一、div+$(“#page1”).load(“b.html”)
参考代码:
<body> <div id="page1"></div> <div id="page2"></div> <script> $("#page1").load("page/Page_1.html"); $("#page2").load("page/Page_2.html"); </script> </body>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
二、iframe
参考代码:
<head> </head> <body> <div 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> </div> <div 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> </div> </body>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
三、object引入
参考代码:
<head> <object style="border:0px" type="text/x-scriptlet" data="page/Page_1.html" width=100% height=150> </object> </head>
- 1
- 2
- 3
- 4
四、import引入
参考代码:
<head> <link rel="import" href="page/Page_1.html" id="page1"> </head> <body> <script> console.log(page1.import.body.innerHTML); </script> </body>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
参考文章:https://www.web-tinker.com/article/20637.html
五、bootstrap的panel组件,或者easyui的window组件,有点类似这个效果;
相关推荐
周公周金桥 2020-09-06
大象从不倒下 2020-07-31
AlisaClass 2020-07-19
MaureenChen 2020-04-21
xingguanghai 2020-03-13
teresalxm 2020-02-18
木四小哥 2013-05-14
SoShellon 2013-06-01
Simagle 2013-05-31
羽化大刀Chrome 2013-05-31
waterv 2020-01-08
LutosX 2013-07-29
vanturman 2013-06-27
wutongyuq 2013-04-12
luoqu 2013-04-10
today0 2020-09-22
89520292 2020-09-18
bigname 2020-08-25