九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
html中引入調(diào)用另一個公用html模板文件的方法
userphoto

2023.02.20 湖南

關注

html中引入調(diào)用另一個公用html模板文件的方法

 前端菜鳥 2019-09-27 13:33:20

一、需要借助 jquerydiv+$("#page1").load("b.html")。

參考代碼:

<body> <divid="page1"></div> <divid="page2"></div> <script> $("#page1").load("page/Page_1.html"); $("#page2").load("page/Page_2.html"); </script> </body>

二、iframe 會生成一個邊框,需要重新設置一下樣式,相當于在頁面內(nèi)嵌入了一個頁面。

參考代碼:

<head> </head> <body> <divid="page1"> <iframealign="center"width="100%"height="170"src="page/Page_1.html"frameborder="no"border="0"marginwidth="0"marginheight="0"scrolling="no"></iframe> </div> <divid="page2"> <iframealign="center"width="100%"height="170"src="page/Page_2.html"frameborder="no"border="0"marginwidth="0"marginheight="0"scrolling="no"></iframe> </div> </body>

三、object引入 同樣會生成一個邊框,需要重新設置一下樣式。

參考代碼:

<head> <objectstyle="border:0px"type="text/x-scriptlet"data="page/Page_1.html"width=100%height=150> </object> </head>

四、import引入 這個我并沒有試驗成功,可能是我打開方式不對。 參考代碼:

<head> <linkrel="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組件,有點類似這個效果;

六、通過一個 include.js控制引入文件。

1、將下方js文件代碼保存成 include.js 文件引入;

2、在頁面中通過 <include src=""><include> 載入模板文件。

參考代碼:

<includesrc="templates/header.html"></include>

js文件代碼:

(function(window,document,undefined){ varInclude39485748323=function(){} Include39485748323.prototype={ //倒序循環(huán) forEach:function(array,callback){ varsize=array.length; for(vari=size-1;i>=0;i--){ callback.apply(array[i],[i]); } }, getFilePath:function(){ varcurWwwPath=window.document.location.href; varpathName=window.document.location.pathname; varlocalhostPaht=curWwwPath.substring(0,curWwwPath.indexOf(pathName)); varprojectName=pathName.substring(0,pathName.substr(1).lastIndexOf('/')+1); returnlocalhostPaht+projectName; }, //獲取文件內(nèi)容 getFileContent:function(url){ varie=navigator.userAgent.indexOf('MSIE')>0; varo=ie?newActiveXObject('Microsoft.XMLHTTP'):newXMLHttpRequest(); o.open('get',url,false); o.send(null); returno.responseText; }, parseNode:function(content){ varobjE=document.createElement("div"); objE.innerHTML=content; returnobjE.childNodes; }, executeScript:function(content){ varmac=/<script>([\s\S]*?)<\/script>/g; varr=""; while(r=mac.exec(content)){ eval(r[1]); } }, getHtml:function(content){ varmac=/<script>([\s\S]*?)<\/script>/g; content.replace(mac,""); returncontent; }, getPrevCount:function(src){ varmac=/\.\.\//g; varcount=0; while(mac.exec(src)){ count++; } returncount; }, getRequestUrl:function(filePath,src){ if(/http:\/\//g.test(src)){returnsrc;} varprevCount=this.getPrevCount(src); while(prevCount--){ filePath=filePath.substring(0,filePath.substr(1).lastIndexOf('/')+1); } returnfilePath+"/"+src.replace(/\.\.\//g,""); }, replaceIncludeElements:function(){ var$this=this; varfilePath=$this.getFilePath(); varincludeTals=document.getElementsByTagName("include"); this.forEach(includeTals,function(){ //拿到路徑 varsrc=this.getAttribute("src"); //拿到文件內(nèi)容 varcontent=$this.getFileContent($this.getRequestUrl(filePath,src)); //將文本轉(zhuǎn)換成節(jié)點 varparent=this.parentNode; varincludeNodes=$this.parseNode($this.getHtml(content)); varsize=includeNodes.length; for(vari=0;i<size;i++){ parent.insertBefore(includeNodes[0],this); } //執(zhí)行文本中的額javascript $this.executeScript(content); parent.removeChild(this); //替換元素this.parentNode.replaceChild(includeNodes[1],this); }) } } window.onload=function(){ newInclude39485748323().replaceIncludeElements(); } })(window,document)

本站僅提供存儲服務,所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Node.js Express 框架學習
java零基礎到項目實戰(zhàn):HTML入門
CVE
Tapestry的實踐心得
NodeJs 中的 HTML 模板
大牛筆記:node.js基礎第三課時
更多類似文章 >>
生活服務
熱點新聞
分享 收藏 導長圖 關注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服