gpt4 book ai didi

javascript - 来自不同文件夹的 Jquery.load URL

转载 作者:行者123 更新时间:2023-11-30 06:41:49 26 4
gpt4 key购买 nike

如果我的文件在不同的文件夹中,我该如何使用 .load

我试过:

$("#messageWindow").load("http://localhost/MainFolder/Messanging/index.php");   
$("#messageWindow").load("Messanging/index.php");
$("#messageWindow").load("../Messanging/index.php");

没有任何效果,我已经阅读了有关 different folders when using URL 的主题,但我似乎无法让他们的答案起作用。

谢谢。

好的,我已经解决了问题 The 1st and 2nd URL above WORKS 但我还有另一个问题。 index.php 有大量的 URL。

<script type="text/javascript" src="../js/jquery-1.7.2.min.js"></script>
<script src="../plugins/ui/jquery.ui.core.js"></script>
<script src="../plugins/ui/jquery.ui.widget.js"></script>
<script src="../plugins/ui/jquery.ui.datepicker.js"></script>
<script src="../plugins/timezone/jstz.min.js"></script>
<script type="text/javascript" src="file_js/index.js"></script>

但现在这些 URl 不再起作用了,我采取的解决方案是添加整个 URL。

<script type="text/javascript" src="http://localhost/MainFolder/js/jquery-1.7.2.min.js"></script>
<script src="http://localhost/MainFolder/plugins/ui/jquery.ui.core.js"></script>
<script src="http://localhost/MainFolder/plugins/ui/jquery.ui.widget.js"></script>
<script src="http://localhost/MainFolder/plugins/ui/jquery.ui.datepicker.js"></script>
<script src="http://localhost/MainFolder/plugins/timezone/jstz.min.js"></script>
<script type="text/javascript" src="http://localhost/MainFolder/Messanging/file_js/index.js"></script>

如果我将文件上传到我的虚拟主机,这会很麻烦。我认为使用相对路径可以解决问题,但我不知道它是如何工作的。

最佳答案

对于 jQuery load()您可以包含当前页面的相对路径或绝对路径。如果您在 JS 控制台或 Firebug 中运行下面的命令,您应该会在浏览器中看到同样的问题两次。

$("#header").load("/questions/10643503/jquery-load-url-from-different-folder");

内容还需要与原始页面来自同一来源(您只能从同一域加载内容)。

关于javascript - 来自不同文件夹的 Jquery.load URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10643503/

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