以下を使用して、テキストボックス検索を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>
上記と同じリンクを使用して、このオプションをフィルタリングするにはどうすればよいですか。