您好我正在使用此表单代码输入获取文本字段。在该文本字段中,我将输入一些字符串进行搜索,然后按提交按钮。当我点击提交按钮时,它会在谷歌搜索引擎中显示搜索结果。如何执行此操作。
<!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>
任何人都可以帮助我吗?在此先感谢......
答案 0 :(得分:0)
您可以使用Google Custom Search API进行此操作。
答案 1 :(得分:0)
只需模仿Google如何做到这一点。关键项是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>