在HTML表单中,单击“提交”按钮后,将显示html元素 在表单中可以转换为html,例如,如果表单包含两个元素
Name : textbox value 10
password: textbox value xx
button : submit
在我提交之后我想要o / p为
<input type="text" value="10" />
<input type="text" value="xx" />
<input type="button" value="submit"/>
使用java或js
答案 0 :(得分:0)
嗯,根据评论,你需要服务器端(例如PHP)。 发布的值必须返回到页面,如下所示:
<form action="" method="post">
Name: <input type="text" name="name" value="<?php echo $_POST['name']>" /><br />
Password: <input type="text" name="pass" value="<?php echo $_POST['pass']>" /><br />
<input type="button" value="submit" />
</form>