我知道这个问题有很多答案,但我都试过了,但我无法解决这个问题。我的具体问题是我有两个文件,index.html
并且part1.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
。
谢谢大家。