AJAX 數(shù)據(jù)庫

ajax database 實(shí)例

 function showcustomer(str)
{
  var xmlhttp;    
  if (str=="")
  {
    document.getelementbyid("txthint").innerhtml="";
    return;
  }
  if (window.xmlhttprequest)
  {
    // ie7+, firefox, chrome, opera, safari 瀏覽器執(zhí)行代碼
    xmlhttp=new xmlhttprequest();
  }
  else
  {
    // ie6, ie5 瀏覽器執(zhí)行代碼
    xmlhttp=new activexobject("microsoft.xmlhttp");
  }
  xmlhttp.onreadystatechange=function()
  {
    if (xmlhttp.readystate==4 && xmlhttp.status==200)
    {
      document.getelementbyid("txthint").innerhtml=xmlhttp.responsetext;
    }
  }
  xmlhttp.open("get","/try/ajax/getcustomer.php?q="+str,true);
  xmlhttp.send();
}

ajax 可用來與數(shù)據(jù)庫進(jìn)行動(dòng)態(tài)通信。

ajax 數(shù)據(jù)庫實(shí)例

下面的例子將演示網(wǎng)頁如何通過 ajax 從數(shù)據(jù)庫讀取信息: 請?jiān)谙旅娴南吕斜碇羞x擇一個(gè)客戶:

實(shí)例

apple computer, inc. baidu, inc canon usa, inc. google, inc. nokia corporation sony corporation of america
客戶信息將顯示在這...



實(shí)例解釋 - showcustomer() 函數(shù)

當(dāng)用戶在上面的下拉列表中選擇某個(gè)客戶時(shí),會執(zhí)行名為 "showcustomer()" 的函數(shù)。該函數(shù)由 "onchange" 事件觸發(fā):

function showcustomer(str) { var xmlhttp; if (str=="") { document.getelementbyid("txthint").innerhtml=""; return; } if (window.xmlhttprequest) { // ie7+, firefox, chrome, opera, safari 瀏覽器執(zhí)行代碼 xmlhttp=new xmlhttprequest(); } else { // ie6, ie5 瀏覽器執(zhí)行代碼 xmlhttp=new activexobject("microsoft.xmlhttp"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readystate==4 && xmlhttp.status==200) { document.getelementbyid("txthint").innerhtml=xmlhttp.responsetext; } } xmlhttp.open("get","/try/ajax/getcustomer.php?q="+str,true); xmlhttp.send();}

showcustomer() 函數(shù)執(zhí)行以下任務(wù):

  • 檢查是否已選擇某個(gè)客戶
  • 創(chuàng)建 xmlhttprequest 對象
  • 當(dāng)服務(wù)器響應(yīng)就緒時(shí)執(zhí)行所創(chuàng)建的函數(shù)
  • 把請求發(fā)送到服務(wù)器上的文件
  • 請注意我們向 url 添加了一個(gè)參數(shù) q (帶有輸入域中的內(nèi)容)

ajax 服務(wù)器頁面

由上面的 javascript 調(diào)用的服務(wù)器頁面是 php 文件,名為 "getcustomer.php"。

用 php 編寫服務(wù)器文件也很容易,或者用其他服務(wù)器語言。請看用 php 編寫的相應(yīng)的例子。

"getcustomer.php" 中的源代碼負(fù)責(zé)對數(shù)據(jù)庫進(jìn)行查詢,然后用 html 表格返回結(jié)果:

 response.expires=-1
sql="select * from customers where customerid="
sql=sql & "'" & request.querystring("q") & "'"

set conn=server.createobject("adodb.connection")
conn.provider="microsoft.jet.oledb.4.0"
conn.open(server.mappath("/db/northwind.mdb"))
set rs=server.createobject("adodb.recordset")
rs.open sql,conn

response.write("")
do until rs.eof
  for each x in rs.fields
    response.write("")
    response.write("")
  next
  rs.movenext
loop
response.write("
" & x.name & " " & x.value & "
")
相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频