程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> ajax+php做的search,顯示和關閉的問題?

ajax+php做的search,顯示和關閉的問題?

編輯:關於PHP編程

ajax+php做的search,顯示和關閉的問題?

我用ajax+php作了個簡易的類似於google search的搜索,當我沒輸入字母的時候,顯示是這樣的,1.jpg:

當我輸入字母時顯示是,2.jpg的效果。

請問大家,當我鼠標點擊別處時,使彈出的search的那個框自動關閉,應如何修改,代碼如下

 

<html>
<body>
<style type="text/css">
#livesearch
  {
  margin:0px;
  width:140px;
  }
#txt1
  {
  margin:0px;
  }
</style>

<script type="text/javascript">

var xmlHttp

function showResult(str)
{
if (str.length==0)
 {
 document.getElementById("livesearch").
 innerHTML="";
 document.getElementById("livesearch").
 style.border="0px";
 return
 }

xmlHttp=GetXmlHttpObject()

if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }

var url="suggest_list.php"
url=url+"?q="+str
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 {
 document.getElementById("livesearch").
 innerHTML=xmlHttp.responseText;
 document.getElementById("livesearch").
 style.border="1px solid #999999";
 }
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 // Internet Explorer
 try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}

</script>

<form>
        <TABLE align="center" style="margin-top:140px" >
                <TR>
                        <TD>           
                                <input type="text" id="txt1" size="26"  name="username">
                                <div id="livesearch"></div>
                                wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww
                        </TD>
                </tr>
        </TABLE>
</form>

</body>
</html>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved