首頁  >  文章  >  後端開發  >  javascript - 请教个问题,这里的这个1怎么获取呀

javascript - 请教个问题,这里的这个1怎么获取呀

WBOY
WBOY原創
2016-06-06 20:11:381092瀏覽

javascript - 请教个问题,这里的这个1怎么获取呀

<code>            var counter = xmlHttp.responseXML.getElementsByTagName("count")[0].firstChild.data;</code>

回复内容:

javascript - 请教个问题,这里的这个1怎么获取呀

<code>            var counter = xmlHttp.responseXML.getElementsByTagName("count")[0].firstChild.data;</code>

<code>function startCallback(){
                if(xmlHttp.readyState == 4){
                    if(xmlHttp.status == 200){
                        setTimeout("pollServer()",5000);
                        refreshTime();
                    }
                }
            }
            
            function pollServer(){
                var url = "DynamicUpdateServlet.php?task=foo" + counter();
                createXMLHttpRequest();
                xmlHttp.open("GET",url,true);
                xmlHttp.onreadystatechange = pollCallback;
                xmlHttp.send(null);
            }
            
            function counter(){
                var res = "&counter=";
                var count = xmlHttp.responseXML.getElementsByTagName("count")[0].firstChild.data;
                res += count;
                return res;
            }
            
            </code>

pollServer() 中调用counter() 要放到 createXMLHttpRequest();前面

可以通过使用PHP的XMLReader内置类获取

http://www.jb51.net/article/80437.htm

两种方法 一:解析XML 二:正则匹配

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn