JS Ajax学习

JS最后一次学习,明天转学Wordpress。
第四点有坑(php不熟,没安装Access)
1.xml文件外联css
test2.xml




    Ajax学习
    


style.css

name{
    color: red;
}

2.Ajax之Get方法




    
    Ajaxtest1



    

AJAX

3.responseXML使用




    
    Ajaxtets2



AJAX

4.Ajax请求服务器返回xml文件信息




    
    AjaxXMLtable



status.xml



    
    Empire Burlesque
    Bob Dylan
    
    
        Empire Burlesque
        Bob Dylan
    
    
        Empire Burlesque
        Bob Dylan
    
    
        Empire Burlesque
        Bob Dylan
    
    
        Empire Burlesque
        Bob Dylan
    

4.Ajax请求返回数据库信息




    
    AjaxDataBase



    

getcustomer.php

<%response.expires=-1
sql="SELECT * FROM CUSTOMER WHERE CUSTOMERID="
sql=sql & "'" & request.querystring("q") & "'"
set conn=Server.CreateObject("AD0DB.Connection")
conn.Provider="Microsoft.Jet.OLEB.4.0"
conn.Open(Server.Mappath("/db/northwind.mdb"))
set rs=Sever.CreateObject("AD0DB.recordset")
rs.Open sql,conn
response.write("")
do until rs.EOF
    for each x in rs.Fields
        reponse.write("")
        response.write("")
    next
    rs.MoveNext
loop
response.write("
" & x.name & "" & x.value & "
") %>

你可能感兴趣的:(学习笔记,js学习)