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

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

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

ajax 可用來與數(shù)據(jù)庫進行交互式通信。

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

下面的實例將演示網(wǎng)頁如何通過 ajax 從數(shù)據(jù)庫讀取信息:

實例

function showcustomer(str) { var xmlhttp; if (str=="") { document.getelementbyid("txthint").innerhtml=""; return; } if (window.xmlhttprequest) {// code for ie7+, firefox, chrome, opera, safari xmlhttp=new xmlhttprequest(); } else {// code for 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","getcustomer.asp?q="+str,true); xmlhttp.send(); } select a customer: alfreds futterkiste north/south wolski zajazd
customer info will be listed here...

實例解釋 - html 頁面

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





function showcustomer(str)
{
if (str=="")
{
document.getelementbyid("txthint").innerhtml="";
return;
}
if (window.xmlhttprequest)
{// code for ie7+, firefox, chrome, opera, safari
xmlhttp=new xmlhttprequest();
}
else
{// code for 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","getcustomer.asp?q="+str,true);
xmlhttp.send();
}




select a customer: alfreds futterkiste north/south wolski zajazd



customer info will be listed here...



源代碼解釋:

如果沒有選擇客戶(str.length==0),那么該函數(shù)會清空 txthint 占位符,然后退出該函數(shù)。

如果已選擇一位客戶,則 showcustomer() 函數(shù)會執(zhí)行以下步驟:

  • 創(chuàng)建 xmlhttprequest 對象
  • 創(chuàng)建在服務器響應就緒時執(zhí)行的函數(shù)
  • 向服務器上的文件發(fā)送請求
  • 請注意添加到 url 末端的參數(shù)(q)(包含下拉列表的內容)

asp 文件

上面這段通過 javascript 調用的服務器頁面是名為 "getcustomer.asp" 的 asp 文件。

"getcustomer.asp" 中的源代碼會運行一次針對數(shù)據(jù)庫的查詢,然后在 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 & "
")
%>

相關文章