0

我有很多 HTML 代码,我想将它们包含在另一个 HTML 页面中。我可以通过创建自己的自定义标签并将其包含在目标 HTML 页面中来做到这一点吗?如果不是,有哪些可能的选择?

例如,

<sample-tag /> <!-- contains another set of HTML code -->

谢谢。

4

1 回答 1

1

复制自:这里

一个.html

<html> 
  <head>  
    <script> 
    $(function(){
      $("#includedContent").load("b.html"); 
    });
    </script> 
  </head> 

  <body> 
     <div id="includedContent"></div>
  </body> 
</html>

b.html

<p> This is my include file </p>
于 2013-08-19T08:48:10.333 回答