• 对firefox的xmlhttp的一点点小研究


    第一个是var xmlHttpReq = new XMLHttpRequest();
              xmlHttpReq.open("GET", "http://localhost/xml.asp", false);
              xmlHttpReq.send(null);  //send要有null没有就错了

    第二个方法是,如果应用.asp文件是xml文件的时候,一定要用response.ContentType="text/xml"声明一下,不用也错

    第三个地方是:var node=xmlHttpReq.responseXML.documentElement.childNodes;
                  document.write("当前在线人数" +node.item(0).textContent+"人"); //必须要用textContent如果用text的话,也是不对的

    顺便介绍一个小技巧

    for(obj_key in node.item(0)){
    alert(obj_key);
    }

    我用了这个方法知道的textContent这个方法的

    posted on 2006-02-14 16:54 csdn兔 阅读(1351) 评论(1)  编辑 收藏 网摘

    Feedback

    #1楼  2008-06-18 10:02 wikirex [未注册用户]
    Hi, xmlhttprequest在firefox上不work的問題困擾蠻久的,嘗試了你的第三個方式後,果然可以了,感謝你的分享!!

    只是用了textContent之後,反而變成IE不work, 所以我寫了一個小Function, 就順利解決不同瀏覽器的問題:

    function getNodeText(node){
    if(node.text)
    return node.text;
    else
    return node.textContent;
    }

      回复  引用    
  • 相关阅读:
    计算机导论课后总结第二弹
    深入懂得信息
    计算机导论课后总结第一弹
    upload-labs脑图
    高精度学习
    洛谷学习
    Bugku 密码学脑图
    Bypass disabled_functions
    Python库学习
    LFI-labs
  • 原文地址:https://www.cnblogs.com/y0umer/p/3839570.html
Copyright © 2020-2023  润新知