>  기사  >  php教程  >  php站内搜索

php站内搜索

PHP中文网
PHP中文网원래의
2016-05-25 17:13:061240검색

[PHP]代码 

<!--Google站内搜索开始-->  
<form method=get action="http://www.google.com/search">  
<input type=text name=q>  
<input type=submit name=btnG value="Google 搜索">  
<input type=hidden name=ie value=GB2312>  
<input type=hidden name=oe value=GB2312>  
<input type=hidden name=hl value=zh-CN>  
<input type=hidden name=domains value="www.williamlong.info">  
<input type=hidden name=sitesearch value="www.williamlong.info">  
</form>  
<!--Google站内搜索结束-->  
  
<!--Baidu站内搜索开始-->  
<form action="http://www.baidu.com/baidu">  
<input type=text name=word>  
<input type="submit" value="Baidu 搜索">  
<input name=tn type=hidden value="bds">  
<input name=cl type=hidden value="3">  
<input name=ct type=hidden value="2097152">  
<input name=si type=hidden value="www.williamlong.info">  
</form>  
<!--Baidu站内搜索结束-->  
  
<!--Yahoo站内搜索开始-->  
<form action="http://www.yahoo.com.cn/search">  
<input type=text name="p">  
<input type="submit" value="Yahoo 搜索">  
<input type=hidden name=vs value="www.williamlong.info">  
</form>  
<!--Yahoo站内搜索结束-->  
  
  下面是Google和百度的Javascript版的站内搜索代码:  
  
<!--Google站内搜索开始-->  
<script type="text/javascript">   
function googlesearch () {  
var wq=document.getElementsByName("wq")[0].value;  
var link="http://www.google.com/search?domains=www.williamlong.info&sitesearch=www.williamlong.info&q="+wq;  
window.open(link); }  
</script>  
<input type="text" name="wq"/><input type="submit" onclick="javascript:googlesearch()" value="Google 搜索" />  
<!--Google站内搜索结束-->

                   

                   

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.