在網頁中加入百度搜尋框例項程式碼

admin發表於2017-02-10
在很多網頁為了方便使用者帶有百度搜尋功能,當然有不少是廣告聯盟性質的,下面介紹的就是一個單純的搜尋功能。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</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>

相關文章