我有这个主页面,用户输入日期并转到第二页, 用户输入日期并单击“提交”,单击“提交”后,表单即可 提交并在上一页(即主页面)中,提交按钮被禁用。
如何创建在提交当前页面中的提交按钮后在上一页中禁用的提交按钮?
下面是test2.php的代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<link rel="stylesheet" type="text/css" href="print.css" media="print" />
<title></title>
</head>
<body>
<header><h4>Customer Purchase Order</h4></header>
<form action="test3.php" method="post">
<table style="border-collapse:collapse;" width="500" height="206" border="1">
Date: <input type="text" name="sdate" placeholder="yyyy-mm-dd">
<input type="submit" name="save" value="Save" onclick="myFunction()"><br><br>
<script>
function myFunction() {
document.getElementById("mySubmit").disabled = true;
}
</script>
</table>
</form>
</body>
</html>
&#13;
这是test3.php的代码
<!DOCTYPE html>
<html>
<body>
<a href="test2.php">Back</a>
</body>
</html>
&#13;