2012-09-10 118 views
4

我想用谷歌搜索我的網址。我想用這些代碼:使用谷歌搜索一個網址

site: http://my-url.ir/ my_words_that_want_to_search 

然後我有一個文本輸入和搜索

一個按鈕,我想HTML(或JavaScript),當我點擊是在文本輸入按鈕放置文本在

site: http://my-url.ir/ text_that_is_in_text_input 
+0

如果是的話,我不認爲它是可能的,那麼你將如何顯示結果? –

+1

@Mayankswami我覺得他更像是用關鍵字重定向到谷歌本身,但過濾到他的'site:',就像[w3 org](http://www.w3.org/) – ajax333221

回答

3

查看Google Custom Search Engine,它會爲你創建這樣的代碼片段。

this query string anatomy,你可以添加其他的參數,而不是添加site:xyz到搜索字符串:

<form method="GET" action="//www.google.de/search"> 
    <input type="hidden" name="as_sitesearch" value="http://example.com"> 
    <input type="text" name="q"> 
    <input type="submit" value="Search!"> 
</form> 

無需使用JavaScript的一個簡單的搜索頁面。