如果没有结果,如何从页面中删除搜索框?

发布于 2024-09-13 13:43:30 字数 973 浏览 8 评论 0原文

我有两个搜索框,一个在顶部,一个在底部。 内容在中间,如果没有找到结果,如何删除其中之一? (底部)

谢谢

我收到了这个表格:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卖梦商人 2024-09-20 13:43:30
<?php if(count($results):?>
<form class="form" name="search" method="_post" action="index.php"><br>...
<?php endif;?>

这是您提供的信息的最佳猜测(没有代码等)

<?php if(count($results):?>
<form class="form" name="search" method="_post" action="index.php"><br>...
<?php endif;?>

That's a best guess with the information you gave (no code, etc.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文