如何在网址中隐藏按钮值?

时间:2010-06-13 17:27:36

标签: html

这是我的搜索表单:

   <form action="" method="get" name="search">
   <input name="s" type="text" size="40" value="<?php echo $_GET["s"]; ?>" />
   <input name="submit" type="submit" value="Search" />
   </form>

当有人点击搜索按钮时,浏览器地址栏中的网址就是这样的:

  

http://example.com/?s=someting&submit=Search

如何更改它以便仅显示:

  

http://example.com/?s=someting

希望我很清楚......

2 个答案:

答案 0 :(得分:9)

<input type="submit">按钮

中删除name =“submit”

答案 1 :(得分:0)

与“Ivar Bonsaksen”一样,您必须删除“name”属性,因为the value of every tag in the Form tag with a name attribute将被发送到服务器并显示在URL中。

P.S: 您可以使用POST方法而不是GET来隐藏所有变量和值。