如何在Google搜索中使用过滤器?
我已使用以下方法将文本框搜索转换为 Google 搜索:
location.href = "http://images.google.com/search?q=" + val;
但是,我想要 Web 搜索、图像搜索、本地搜索和搜索选项。新闻搜索。
我确实有:
<tr height="40">
<td width="80%" align="center" ><input id="searchText" type="text" size="100"/></td>
<td class="searchbox" width="20%" align="center"><a href="#" onclick="startSearch()">Search</a></td>
<td width="0%"></td>
</tr>
<td align="center">
<input type="radio" name="searchType" value="true"/> Web
<input type="radio" name="searchType" value="false"/> Image
<input type="radio" name="searchType" value="false"/> News
<input type="radio" name="searchType" value="false"/> Local
</td>
如何使用上面相同的链接过滤此选项。
I have converted a textbox search to Google Search using :
location.href = "http://images.google.com/search?q=" + val;
But, I want options of Web Search, Image Search, Local Search & News Search.
I do have :
<tr height="40">
<td width="80%" align="center" ><input id="searchText" type="text" size="100"/></td>
<td class="searchbox" width="20%" align="center"><a href="#" onclick="startSearch()">Search</a></td>
<td width="0%"></td>
</tr>
<td align="center">
<input type="radio" name="searchType" value="true"/> Web
<input type="radio" name="searchType" value="false"/> Image
<input type="radio" name="searchType" value="false"/> News
<input type="radio" name="searchType" value="false"/> Local
</td>
How do I filter this optiong using the same above link.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您确实应该考虑使用 Google Search API,它会给你更多的力量和控制力。
但如果您需要一些快速而肮脏的东西,您可能需要在连接查询之前选择 URL。以下是 url:
等。
因此,也许要做的事情是维护一个包含当前搜索 URL 的全局变量,然后在每个单选按钮的 onclick 函数中更改该变量。
First of all, you really should look into using the Google Search API, which will give you a lot more power and control.
But if you need something quick and dirty, you would want to select the URL before concatenating the query. Here are the urls:
etc.
So perhaps the thing to do is maintain a global variable that contains the current search URL, and then change that variable in an onclick function for each radio button.