gpt4 book ai didi

javascript - 通过 jQuery 加载本地文件

转载 作者:行者123 更新时间:2023-11-30 10:47:06 29 4
gpt4 key购买 nike

看了引用书3个小时,还是没有效果,所以在这里问。

操作系统:Windows 7(是否相关?)
浏览器:Opera 11.51
jQuery: 1.6.2


本地机器上的两个文件,ma​​in.htmlmenu.html 在同一文件夹中。

main.html:

<html>
<head>
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// append contents
$('#menu').load('menu.html');
});
</script>
</head>
<body>
<table>
<tr>
<td id="menu"></td>
</tr>
</table>
</body>
</html>

菜单.html:

<html>
<head></head>
<body>
menu tree
</body>
</html>

我猜,当我打开 main.html 时,应该有一个表格,其中一个单元格包含“菜单树”字符串。例如,它在 IE 中有效。但是 Opera 没有显示任何结果。

我用 load() 的可选回调调试了这些东西,它显示 load() 的结果状态是“错误”。

我做错了什么?

最佳答案

在 Opera 中,您必须设置标志 Allow File XMLHttpRequest (opera:cofig - User Prefs)。

在 Google Chrome 中,您必须使用选项参数 --allow-file-access-from-files 来运行浏览器,例如:“C:\Documents and Settings\User\Local Settings\Application Data\Google\Chrome\Application\chrome.exe"--allow-file-access-from-files

关于javascript - 通过 jQuery 加载本地文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7666852/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com