0

嗨,我正在使用此表单代码输入获取文本字段。在该文本字段中,我将输入一些字符串进行搜索,然后按提交按钮。当我单击提交按钮时,它会在谷歌搜索引擎中显示搜索结果如何执行此操作。

 <!DOCTYPE html>
    <html>
    <body>
    <form name="input" action="index.html" method="get">
    Search:<input type="text" name="user">
    <input type="submit" value="Submit">
    </form>
    </body>
    </html>

谁能帮我?提前致谢......

4

2 回答 2

0

您可以为此使用 Google自定义搜索 API

于 2012-10-11T10:31:04.873 回答
0

简单地模仿谷歌的做法。关键项是字符串的action属性和名称的使用:q

<!doctype html>
<meta charset=utf-8>
<title>Google search</title>
<form action="http://www.google.com/search">
<label for=q>Keyword(s):</label>
<input type=text name=q size="32" id=q>
<input type="hidden" name="ie" value="utf-8">
<input type="hidden" name="oe" value="utf-8">
<input type="submit" value="Search">
</form>
于 2012-10-11T10:55:08.357 回答