我们正在创建一个快速查找搜索字段。
html就像这样:
<form>
<fieldset class="search">
<input class="contact-propid" type="text" name="" value="" placeholder="enter property id">
<button class="btn" title="Search"></button>
</fieldset>
</form>
预期的搜索字词如下:p-442749379
目标网址如下:
thissite.com/listing.php?id=p-442749379
现在这个快速搜索位于所有页面的标题中.. 我看是否在输入类中添加:name =“listing.php?id =”,它几乎让我到了我想去的地方......
除了浏览器转换?和=并且无法在浏览器中正确呈现这些
哦,它放了一个?在上市之前答案 0 :(得分:1)
<form action="listing.php" method="GET">
<input type="text" name="id" placeholder="enter property id">
<input type="submit" value="Search">
</form>
在action
上设置method
和<form>
,在name
元素上设置<input>
,它就会按照您的意愿行事。