新年祝福短信app(源码)

  var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
                    var URL = "Web.asmx/HelloWorld"; 
                    xmlhttp.Open("Post", URL, false);
                    //false来表示异常,true表示同步
                    xmlhttp.send(null);
                    var result = xmlhttp.status;
                    var x = xmlhttp.responseXML;
                    $.tips(result);
                    if (result == 200) {
                        $.tips(x.childNodes[1].text);
                        if (x.childNodes[1].text == "True") {
                            什么也不做,继续下面的验证  
                            $.tips("True");
                        }
                        else { 
                            $.error(content, "系统提示!");
                            return;
                        }
                    }
                    else {
                        $.error("请求错误:" + result, "系统提示");
                    }
                    xmlhttp = null;

若出错,可根据xmlhttp.status来判断错误原因,用x.childNodes[1].text来取值 ActiveXObject 是微软自己的框架,若考虑浏览器兼容,就只能使用JQUERY来实现AJAX了,可以下面的内容jQuery AJAX实现调用页面后台方法

新年祝福短信app(源码)

上一篇:阿里云最新Maven仓库地址 从此 我的maven依赖下载666~


下一篇:Android系统回收资源时进程被杀的优先级