如果没有结果,如何从页面中删除搜索框?
我有两个搜索框,一个在顶部,一个在底部。 内容在中间,如果没有找到结果,如何删除其中之一? (底部)
谢谢
我收到了这个表格:
<form class="form" name="search" method="_post" action="index.php"><br>
<input style="width:300px; height:28px; vertical-align:middle;" class="searchbox" type="text" name="q" value="<? print $info['keyword']; ?>"/>
<select name="type" style="height:28px; width:100px; font-size:18px; vertical-align:middle; margin-left:3px; margin-right:2px;"> <input type="submit" name="search" value="Search" style="width:80px; height:28px; font-size:16px; text-align:justify; vertical-align:middle;" /><br><br>
<input type="radio" name="stype" value="all" <? if(!isset($_GET['stype'])||$_GET['stype']=="all") print "checked";?> /> all files
<input type="radio" name="stype" value="checked" <? if(!isset($_GET['stype'])||$_GET['stype']=="checked") print "checked";?> /> checked files
I have two search boxes, one on top, and one on bottom.
The content is in the middle, if found no results, how do I remove one of them? (bottom one)
Thanks
I got this for the form:
<form class="form" name="search" method="_post" action="index.php"><br>
<input style="width:300px; height:28px; vertical-align:middle;" class="searchbox" type="text" name="q" value="<? print $info['keyword']; ?>"/>
<select name="type" style="height:28px; width:100px; font-size:18px; vertical-align:middle; margin-left:3px; margin-right:2px;"> <input type="submit" name="search" value="Search" style="width:80px; height:28px; font-size:16px; text-align:justify; vertical-align:middle;" /><br><br>
<input type="radio" name="stype" value="all" <? if(!isset($_GET['stype'])||$_GET['stype']=="all") print "checked";?> /> all files
<input type="radio" name="stype" value="checked" <? if(!isset($_GET['stype'])||$_GET['stype']=="checked") print "checked";?> /> checked files
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您提供的信息的最佳猜测(没有代码等)
That's a best guess with the information you gave (no code, etc.)