<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>js</title>
</head>
<body>
<form action="https://www.google.com.hk/search?" method="GET">
<input type="text" name="q"></input>
<input type="submit" value="提交">
</form>
</body>
</html>
利用html提交关键字 进行谷歌搜索
<form action="https://www.sogou.com/sogou?" method="GET">
<input type="text" name="query"></input>
<input type="submit" value="提交">
</form>
利用html提交关键字 进行搜狗搜索
<form action="https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=0&rsv_idx=1&tn=baidu&" method="GET">
<input type="text" name="wd"></input>
<input type="submit" value="提交">
</form>
利用html提交关键字 进行百度搜索
转载于:https://blog.51cto.com/thedream/1759099