在很多网页为了方便用户带有百度搜索功能,当然有不少是广告联盟性质的,下面介绍的就是一个单纯的搜索功能。
代码如下:
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<
html
>
<
head
>
<
meta
charset
=
" utf-8"
>
<
title
>蚂蚁部落</
title
>
</
head
>
<
body
>
<
div
id
=
"container"
>
<
div
align
=
"center"
>
<
input
name
=
"tn"
type
=
"hidden"
value
=
"baidu"
>
<
a
>
<
img
src
=
"http://img.baidu.com/search/img/baidulogo_clarity_80_29.gif"
align
=
"bottom"
border
=
"0"
></
a
>
<
input
type
=
"text"
name
=
"word"
size
=
"30"
/>
<
input
type
=
"submit"
value
=
"百度搜索"
/></
div
>
</
form
>
</
div
>
</
body
>
</
html
>
|
原文发布时间为:2017-2-10
本文作者:admin
本文来自云栖社区合作伙伴“蚂蚁部落”,了解相关信息可以关注蚂蚁部落
原文链接:在网页中加入百度搜索框实例代码