Home  >  Article  >  Backend Development  >  一个form 表单 get传参问题

一个form 表单 get传参问题

WBOY
WBOYOriginal
2016-06-23 13:20:361080browse

如这个地址 http://www.hj0593.com/t.php?id=1
我在表单里面填写好name字段,想提交后台变为 http://www.hj0593.com/t.php?id=1&name='参数'

可是这边总是变为 http://www.hj0593.com/t.php?name='参数'

这个什么原因怎么解决呢?


代码很简单如下

<html><body><form action="" method="get">Name: <input type="text" name="name"><br><input type="submit"></form></body></html>


回复讨论(解决方案)

只传了name,          id没传

ID原来URL就有。我要连原来的URL一起传

ID原来URL就有。我要连原来的URL一起传

啊,不知道你为嘛要分开写,那你在action里写上带id这个参数的url就可以了

method="get" 使用 GET 方法传递数据,将直接从表单数据构造 url 参数串,并不管原来的 url 中是否有参数
POST 方式就不会改变 url 参数

你需要将 id 放到表单的隐藏控件中

楼上正解!!!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn