日期:2014-05-18 浏览次数:20785 次
function getcitylist1() {
$.ajax({
url: "http://center.smesd.gov.cn/util?o=areaselect&supercode=1030",
dataType: "text/html",
data: "",//
beforeSend: function(x) {
x.setRequestHeader("Content-Type", "text/html; charset=utf-8");//
},
success: function(json) {
alert(json.d);
},
error: function(x, e) {
alert(x.responseText);
},
complete: function(x) {
alert(x.responseText);
}
});
}
function createXmlHttp(){//创建AJAX(XmlHttpRequest)
var XmlHttp = false;
try{
XmlHttp = new XMLHttpRequest();
}catch(e1){
try{
XmlHttp = new ActiveXObject("Microsoft.XmlHttp");
}catch(e2){
try{
XmlHttp = new ActiveXObject("Msxml2.XmlHttp");
}catch(e3){
XmlHttp = false;
}
}<