1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!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提交关键字 进行谷歌搜索
1
2
3
4
|
<
form
action
=
"https://www.sogou.com/sogou?"
method
=
"GET"
>
<
input
type
=
"text"
name
=
"query"
></
input
>
<
input
type
=
"submit"
value
=
"提交"
>
</
form
>
|
利用html提交关键字 进行搜狗搜索
1
2
3
4
|
<
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提交关键字 进行百度搜索
本文转自 shouhou2581314 51CTO博客,原文链接:http://blog.51cto.com/thedream/1759099,如需转载请自行联系原作者