我有调用Ajax调用的JavaScript函数。
inside- sales.php
下面是代码
strURl="sample.php";
self.xmlHttpReq.open('GET',strlURL,true);
由于两个文件都在调用的路径中。
我希望sample.php
位于名为model
所以如何重写strUrl以便它在这个文件夹里面。
请在此建议我。
答案 0 :(得分:0)
您只需在文件名前添加文件夹名称。
strURl="model/sample.php";
self.xmlHttpReq.open('GET',strlURL,true);
由于