Javascript 重定向不起作用/警报不显示

Javascript 重定向不起作用/警报不显示,javascript,php,jquery,Javascript,Php,Jquery,这似乎不行。我想在提交后返回表单。但它只是显示 **Object not found!** The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error. If you think this is a server error,

这似乎不行。我想在提交后返回表单。但它只是显示

**Object not found!**

The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.

If you think this is a server error, please contact the webmaster.

**Error 404**

localhost
Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.6.23
而且警报也不会弹出。 或者它不会弹出,因为有一个错误

我的php

if (mysqli_query($con,$sql))
    {
        ?><script>
            alert('Saved Successfully!');
            window.location = ".../cnc/makerForm.php";
        </script><?php
    }
if(mysqli_查询($con,$sql))
{
?>
警报(“保存成功!”);
window.location=“…/cnc/makerForm.php”;

此错误表示目标文件不存在。正如注释中指出的,这很可能是因为您在重定向路径声明
window.location=“…/cnc/makerForm.php”
中写入了…而不是..,谢谢。
我现在知道我的代码出了什么问题。我表单中的文件错了。

什么是
?我以为我们只有
;)请尝试以下绝对路径www://site.com/cnc/makerForm.phpThat 表示您引用的文件在该路径下不存在。您能在URL中导航到该文件吗?好的,进入windows expMac上的Lorr或finder并手动导航到该文件,是否存在?
<div class="w3-border">
    <h6 class = "w3-grey trbl-padding-5 trbl-margin">Maker</h6>
    <a class="w3-btn-floating w3-pale-yellow" onclick="return toggleMakerBox('iframe_makerForm')">+</a>
    <iframe height="400px" width="100%" src="makerForm.php" style="display:none;" name="iframe_makerForm" id="iframe_makerForm"></iframe>
</div>