在很多网页为了方便用户带有百度搜索功能,当然有不少是广告联盟性质的,下面介绍的就是一个单纯的搜索功能。
代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>web前端学习扣qun:731771211 每日分享技术,学术交流</title>
</head>
<body>
<div id="container">
<form action="http://www.baidu.com/baidu" target="_blank">
<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>