我有一个简单的表格,想在提交时反映新页面中的值。我尝试使用 javascript 来做到这一点。但是,没有成功,因为它没有打印出来。有人能帮助我吗?此外,我对更简单的想法持开放态度,因为 javascript 可能不是做到这一点的唯一方法。PHP 对我来说似乎很难。
这是我的表格。
<head>
</head>
<body>
<form action="demo_form.html" method="POST">
First Name<input type="text" name="fname"><br>
<input type="submit" value="submit">
</form>
</body>
</html>
这是提交后的html页面,也是“demo_form.html”
<head>
<script type="text/javascript">
var nameValue = document.getElementById("fname").value;
document.getElementById("printHere").value=nameValue;
</script>
</head>
<body>
Welcome <div id="printHere"></div>
</body>
</html>