今天突然想到,在自己的頁面中調用google、百度這樣強大的搜索引擎想必很酷。
于是上網查了資料,沒想到就幾行代碼的事。
下面是調用百度的一個代碼段:
代碼如下:
<!--在頁面中調用百度引擎-->
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<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 href=http://www.baidu.com/>
<img src=http://img.baidu.com/search/img/baidulogo_clarity_80_29.gif alt=baidu align=bottom border=0></a>
<input type=text name=word size=30>
<input type=submit value=百度搜索></div>
</form>
</div>
</body>
</html>