Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题如何从输出 &q=something
导致现在它的 localhost/index.php?dir=directory
我的表单只是将 localhost/index.php?dir=directory 覆盖到 localhost/index.php?q=something
但我想得到 localhost/index.php?dir=directory&q=something
你能把我转发给一个教程或什么的吗?不知道怎么在网上找到这个
谢谢。
使用(默认)提交表单method="get"将覆盖操作中指定的任何查询字符串。
method="get"
不要对查询字符串中的数据进行硬编码,而是将其放在<input type="hidden">元素中。
<input type="hidden">