我正在尝试找到 HTML 的高级搜索查询来自动搜索结果。
例如,普通的 google.com 查询是
https://google.com/search
,而图像搜索查询是 https://images.google.com/images
我找不到通过高级搜索引擎自动搜索 4 个文本框中的值的查询。
我正在寻找的功能是,当我尝试从网页搜索关键字时,它应该通过高级搜索引擎:
<form action="https://www.google.com/advanced_search?as_q=q&as_epq=r&as_oq=s&as_eq=t">
我找到了通过高级搜索引擎的替代方法。 高级搜索有一些在搜索查询的 URL 中传递的参数:
as_q
,就像这样。<input class="" type="text" name="as_q">
as_epq
as_oq
as_eq
因此,我用相应的名称命名 HTML 文本框,并将上述参数连接到搜索查询。
对于高级搜索的第一部分,请尝试
<form action="https://google.com/search" name="f">
<div class="field">
<label for="field1">all these words:</label>
<input type="text" class="textinput" id="field1" value="" name="as_q">
</div>
<br>
<div class="field">
<label for="field2">this exact word or phrase: </label>
<input type="text" class="textinput" id="field2" value="" name="as_epq">
</div>
<br>
<div class="field">
<label for="field3">any of this words: </label>
<input type="text" class="textinput" id="field3" value="" name="as_oq">
</div>
<br>
<div class="field">
<label for="field4">none of these words: </label>
<input type="text" class="textinput" id="field4" value="" name="as_eq">
</div>
<br>
<div class="field">
<label for="field5">numbers ranging from: </label>
<input type="text" class="textinput1" id="field5" value="" name="as_nlo">
<span class="seperator">to</span>
<input type="text" class="textinput2" id="field5" value="" name="as_nhi">
</div>
<input type="submit" value="advanced search">
</form>
如果您正在尝试创建 HTML 页面,我想分享此代码。
您可以使用
& nbsp;
添加空格以进行右缩进。
这是一个例子:
<form action="https://google.com/search">
All these words:<input type="text" name="as_q" >
<br><br>Exact word/phrase:<input type="text" name="as_epq" >
<br><br>Any of these words:<input type="text" name="as_oq" >
<br><br>None of these words:<input type="text" name="as_eq" >
<br><br> <input type="submit" value="advanced search">
</form>
有人知道“Google 高级搜索”页面第二部分中“站点或域”字段的输入名称吗? 谢谢。