1

我想知道是否有人可以帮助我尝试使用具有该get功能的表单,但运气不佳。

这是我的代码

<div class="row-fluid search-forms search-default">
<form class="form-search" method="get" action="search_results.php">
<div class="chat-form">
<div class="input-cont">   
<input type="text"  placeholder="Search..." class="m-wrap" />
</div>
<button type="button" class="btn green">Search &nbsp; <i class="m-icon-swapright m-icon-white"></i></button>
</div>
</form>
</div>

搜索将我带到正确的页面,但之后什么也没有?q=

任何的想法?

4

2 回答 2

3

您还没有为您的输入提供名称。所以,它没有任何东西可以添加到 GET 中。将属性 name="" 添加到标签。

于 2013-08-14T16:29:31.257 回答
2

您必须添加 name="q":

<input type="text"  placeholder="Search..." name="q" class="m-wrap" />
于 2013-08-14T16:29:21.910 回答