0

我有代码

<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方法中,我需要插入../吗?谢谢..

4

1 回答 1

0

该基本标记不会像在 HTML 文档上那样自动解析 jQuery ajax 请求中的相对 URL。

如果您想找到解决方法,应该在这里 What is the best way to set up base url for ajax request using Jquery?

它们提供了一种将基本 href 与您想要放入 ajax 的任何子 URL 连接起来的方法

于 2013-08-02T04:05:15.950 回答