在 WAMP 中,我将根目录从 更改C:\wamp\www
为C:\wamp\www\public
. 我有一个名为username.html
它的文件,它通过 Ajax 与simple.php
. simple.php
如果在其中,这可以正常工作,C:\wamp\www\public
但是如果我将其移至C:\wamp\www\private
没有任何反应。
注意我选择不使用 jquery 并使用纯 javascript 执行此操作。
xmlhttp.open("GET", "simple.php?suite="+top,true);//works when simple.php is in same folder
xmlhttp.open("GET", "..\private\simple.php?suite="+top,true);//doesn't work
xmlhttp.open("GET", "../private/simple.php?suite="+top,true);//doesn't work
xmlhttp.open("GET", "..//private//simple.php?suite="+top,true);//doesn't work