我有一个网页,需要检查与原始网址位于同一分区的文件内容。
我的原始网址是:file:///C:/work/run/report/index.html
此网址包含显示其他网址的框架:file:///C:/work/run/report/dir1/dir2/frame.html
此框架尝试使用以下摘录向file:///C:/work/run/log/log.html
发送获取请求(使用相对路径:"../../../" + log/log.html
):
$.get("../../../" + log/log.html, function( data ) {
checkIfLogFileContentsIncludeBookmark(data);
},"html");
这失败了。
但是,当尝试执行相同的get到位于原始URL目录内的URL:file:///C:/work/run/report/log/log.html
(使用相对路径:"../../" + log/log.html
)时,它使用相同的代码正常工作:< / p>
$.get("../../" + log/log.html, function( data ) {
checkIfLogFileContentsIncludeBookmark(data);
},"html");
是否存在jQuery.get()
的一些已知限制,一般是JavaScript或一般我丢失的网址?