包含GET请求的HTML页面

时间:2011-04-25 23:19:47

标签: html get

所有

我必须手动创建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 个答案:

答案 0 :(得分: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>

大多数参数都是不必要的,但这里有一个包含搜索字段的表单,可以生成您想要的搜索查询