Html 从自己的网页通过图像进行谷歌搜索

Html 从自己的网页通过图像进行谷歌搜索,html,forms,google-image-search,Html,Forms,Google Image Search,是否可以直接从我自己的网页上通过图像进行搜索 我想插入一个url,如:http://thegalaxyguide.com/galaxy/sun/ultra_violet_sun.gif然后被重定向到谷歌并观看结果 我试过这个 <form method="get" action="http://images.google.com/searchbyimage" <input type="text" /> <input type="submit" val

是否可以直接从我自己的网页上通过图像进行搜索

我想插入一个url,如:http://thegalaxyguide.com/galaxy/sun/ultra_violet_sun.gif然后被重定向到谷歌并观看结果

我试过这个

    <form method="get" action="http://images.google.com/searchbyimage"
    <input type="text" />
    <input type="submit" value="Search" />
    </form>
这样做

<form method=get action='http://www.google.co.in/searchbyimage'>
<input type=text name=image_url value='https://www.google.com/intl/en_com/images/srpr/logo3w.png'>
<input type=hidden name='encoded_image' value='' />
<input type=hidden name='image_content' value='' />
<input type=hidden name='filename' value='' />
<input type=hidden name='num' value='10' />
<input type=hidden name='hl' value='en' />
<input type=hidden name='authuser' value='0' />
<input type=hidden name='bih' value='638' />
<input type=hidden name='biw' value='1366' /><br>
<input type=submit name='biw' value='search' />
</form>


这样做

<form method=get action='http://www.google.co.in/searchbyimage'>
<input type=text name=image_url value='https://www.google.com/intl/en_com/images/srpr/logo3w.png'>
<input type=hidden name='encoded_image' value='' />
<input type=hidden name='image_content' value='' />
<input type=hidden name='filename' value='' />
<input type=hidden name='num' value='10' />
<input type=hidden name='hl' value='en' />
<input type=hidden name='authuser' value='0' />
<input type=hidden name='bih' value='638' />
<input type=hidden name='biw' value='1366' /><br>
<input type=submit name='biw' value='search' />
</form>