给定以下页面test.html将表单提交到另一个页面post.html:
<form action="post.html" method="POST">
<input type="hidden" name="t1" value="qwerty"/>
<input type="submit"/>
</form>
是否可以在post.html中使用JavaScript或jQuery来读取t1的值。
答案 0 :(得分:0)
服务器方处理 POST 数据。
javascript 是客户端方。所以,javascript
是不可能的