黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

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

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

ajax 可用來(lái)與數(shù)據(jù)庫(kù)進(jìn)行交互式通信。

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

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

實(shí)例

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...

實(shí)例解釋 - html 頁(yè)面

當(dāng)用戶在上面的下拉列表中選擇某位客戶時(shí),會(huì)執(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...



源代碼解釋:

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

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

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

asp 文件

上面這段通過(guò) javascript 調(diào)用的服務(wù)器頁(yè)面是名為 "getcustomer.asp" 的 asp 文件。

"getcustomer.asp" 中的源代碼會(huì)運(yùn)行一次針對(duì)數(shù)據(jù)庫(kù)的查詢,然后在 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)文章