如何在另一个html文件中包含html文件

时间:2013-06-27 17:11:33

标签: javascript jquery html r shiny

我知道这个问题有很多答案,但是我已经尝试了所有这些,我无法解决这个问题。 我的具体问题是我有两个文件index.htmlpart1.html,我需要在part1.html中添加index.html

我尝试过使用:

.load() function of jquery.
<!--#include file="part1.shtml" -->
include with html like <!--#include file="part1.html" -->

但这解决了我的问题,为什么我需要呢?我有一个包含大量代码的页面,在这一刻几乎不可能工作。为什么不使用服务器语言?我这样做,但我在R中使用一个名为shiny的框架,相信我的服务器语言不是解决方案xD。

当我使用.load()时,我收到错误XMLHttpRequest cannot load file:///home/... Origin null is not allowed by Access-Control-Allow-Origin

谢谢大家。

3 个答案:

答案 0 :(得分:2)

use jquery

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

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

答案 1 :(得分:0)

.load应该正常工作。一个简单的例子,说你有以下div:

<div id="contentDiv"></div>

使用jQuery,您可以将单独的HTML文件加载到该div:

$(document).ready(function() {
    $("#contentDiv").load("part1.html");
});

答案 2 :(得分:0)

这与SOP(同源政策)有关,最近我遇到了同样的问题......所以我用过这个......希望你能这样做......这就是链接:http://jsfiddle.net/JKZ2h/1/ 我的HTML代码:

<li><a href="#" class="about-link">About&nbsp;Us</a></li>
<div class="bdy"></div>

我的js代码:

$('.about-link').click(function() {
$('.bdy').html('<iframe sandbox="allow-scripts allow-same-origin"  style="width:100%;height:435px;" src="http://www.erail.in/?R=12622"><iframe>');
})

甚至这适用于静态网页: 这里面任何函数......都可以......:

$('.bdy').html('<object style="width:100%;height:435px;"data="http://www.jhsoftech.com/contactus.php">');