我有代码
<base href = "http://localhost/thebaseaddress/">
如果我目前正在处理该地址newFolder
内的文件夹,例如并在该文件夹上的文件中使用该文件夹,例如index.php
,它是否会影响我的 jquery.post
方法从父目录访问文件,例如
<base href = "http://localhost/thebaseaddress/">
//jquery
$.post('otherFolder/file.php', { passed: passed }, function(data) {
});
请注意,otherFolder/file.php 位于 newFolder 目录之外,并且位于父目录中。
结构:
thebaseaddress
newFolder
index.php
otherFolder
file.php
anyFile1.php
anyFile2.php
然后也在index.php
我有这个:
include 'otherFolder/anyFile1.php';
include 'otherFolder/anyFile2.php';
我应该使用../
in.post
还是不再使用,因为我有它base href
?而且在include
方法中,我需要插入../
吗?谢谢..