精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

AJAX 數據庫

ajax database 實例

 function showcustomer(str)
{
  var xmlhttp;    
  if (str=="")
  {
    document.getelementbyid("txthint").innerhtml="";
    return;
  }
  if (window.xmlhttprequest)
  {
    // ie7+, firefox, chrome, opera, safari 瀏覽器執行代碼
    xmlhttp=new xmlhttprequest();
  }
  else
  {
    // ie6, ie5 瀏覽器執行代碼
    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 可用來與數據庫進行動態通信。

ajax 數據庫實例

下面的例子將演示網頁如何通過 ajax 從數據庫讀取信息: 請在下面的下拉列表中選擇一個客戶:

實例

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



實例解釋 - showcustomer() 函數

當用戶在上面的下拉列表中選擇某個客戶時,會執行名為 "showcustomer()" 的函數。該函數由 "onchange" 事件觸發:

function showcustomer(str) { var xmlhttp; if (str=="") { document.getelementbyid("txthint").innerhtml=""; return; } if (window.xmlhttprequest) { // ie7+, firefox, chrome, opera, safari 瀏覽器執行代碼 xmlhttp=new xmlhttprequest(); } else { // ie6, ie5 瀏覽器執行代碼 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() 函數執行以下任務:

  • 檢查是否已選擇某個客戶
  • 創建 xmlhttprequest 對象
  • 當服務器響應就緒時執行所創建的函數
  • 把請求發送到服務器上的文件
  • 請注意我們向 url 添加了一個參數 q (帶有輸入域中的內容)

ajax 服務器頁面

由上面的 javascript 調用的服務器頁面是 php 文件,名為 "getcustomer.php"。

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

"getcustomer.php" 中的源代碼負責對數據庫進行查詢,然后用 html 表格返回結果:

 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 & "
")
相關文章