2011-04-25 140 views
0

全部,包含GET請求的HTML頁面

我必須手動創建HTML頁面。它背後的故事並不是那麼有趣......但在奇觀的情況下。我想更改一個GET請求的參數,對於谷歌來執行安全搜索。所以,我有 http://www.google.com/search?hl=en&source=hp&biw=1422&bih=755&q=blabla&aq=f&aqi=g10&aql=&oq=

http://www.google.com/search?hl=en&source=hp&biw=1422&bih=755&q=blabla&aq=f&aqi=g10&aql=&oq=&safe=strict

我要與修改後的GET參數創建一個HTML頁面。 該HTML字符串會是什麼樣子?

感謝 禮

+1

是什麼HTML頁面是否正確? – 2011-04-25 23:22:02

+1

'strict'不是一個有效的值:http://www.google.com/cse/docs/resultsxml.html#safesp – 2011-04-25 23:25:12

+0

頁面通過設置safe = strict來強制搜索安全 – reza 2011-04-26 16:36:57

回答

3

嘗試

<html> 
    <head> 
     <title>Safe search</title> 
    </head> 
    <body> 
     <form action="http://google.com/search" method="get"> 
      <input type="hidden" name="hl" value="en" /> 
      <input type="hidden" name="source" value="hp" /> 
      <input type="hidden" name="biw" value="1422" /> 
      <input type="hidden" name="bih" value="755" /> 
      <input type="text" name="q" /> 
      <input type="hidden" name="aq" value="f" /> 
      <input type="hidden" name="aqi" value="g10" /> 
      <input type="hidden" name="aql" value="" /> 
      <input type="hidden" name="oq" value="" /> 
      <input type="hidden" name="safe" value="strict" /> 
     </form> 
    </body> 
</html> 

大多數參數是不必要的,但這裏是一個形式,包含搜索領域,將產生搜索查詢想要