我从 html 表单请求 url,然后将其发布到 php 中并运行 if 文件存在,然后使用 jquery 我返回如果找到文件,它会覆盖报告消息。
看看我下面的代码.. 唯一的问题是我实际上无法获得找到页面的响应,所以我认为 PHP file_exsists 命令有问题。
<?php
header('Access-Control-Allow-Origin: *');
$filename = $_POST["find-one"];
$filename2 = $_POST["find-two"];
?>
<html>
<header>
<title>404 Tool</title>
<script type="text/javascript" src=".../1.7.1/jquery.min.js"></script>
<?php
if (file_exists($filename)) {
echo "<script>
$(document).ready(function() {
$('.report-one').text('File $filename is found.');
});
</script>";
} else {
echo "<script>
$(document).ready(function() {
$('.report-one').text('File $filename doesn't exsist.');
});
</script>";
}
if (file_exists($filename)) {
echo "<script>
$(document).ready(function() {
$('.report-two').text('File $filename2 is found.');
});
</script>";
} else {
echo "<script>
$(document).ready(function() {
$('.report-two').text('File $filename2 doesn't exsist.');
});
</script>";
}
?>
</header>
<form method="post" action="<?php echo $PHP_SELF;?>">
<input type="text" name="find-one" class="find-one"/>
<p class="report-one">Waiting</p>
<input type="text" name="find-two" class="find-one"/>
<p class="report-two">Waiting</p>
<input type="submit" value="Search for 404's">
</form>
</body>
</html>