Force google image search

前端 未结 2 776
一个人的身影
一个人的身影 2021-01-28 16:38

I have a simple site where the top content is a navigation tab with two navigation lists: Web and Image. Under the navigation tab i have a google custom search search element/ba

2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-28 16:52

    I think you can basically create your own Google Image search form. The most important thing to know is that the URL for image search looks like:

    http://www.google.com/search?site=imghp&tbm=isch&q=Glee
    

    (Where "Glee" is your search term).

    Here's a simple example of how the form would be, HTML:

    Google Image Search

    JavaScript:

    function reDirect() {
        window.location = 'http://www.google.com/search?site=imghp&tbm=isch&q=' + document.getElementById('srchterm').value;
    }
    

    Hope that helped you in any manner!

提交回复
热议问题