• JS Open XML


      //针对两种浏览器,分别获取xmlDocument对象   
  •     function   loadXML(xmlFile)    
  •     {    
  •         var xmlDoc;   
  •             if(window.ActiveXObject) {    
  •                 xmlDoc=new ActiveXObject("Microsoft.XMLDOM");    
  •                 xmlDoc.async=false;   
  •                 xmlDoc.load(xmlFile);   
  •             }   
  •             else if(document.implementation&&document.implementation.createDocument){    
  •                 xmlDoc=document.implementation.createDocument( """",null);    
  •                 xmlDoc.async=false;   
  •                 xmlDoc.load(xmlFile);   
  •             } else{   
  •                 alert('Your   browser   cannot   handle   this   script');    
  •             }   
  •         return xmlDoc;   
  •     }   
  • 相关阅读:
    Makefile.am文件配置
    PHP之mb_check_encoding使用
    PHP之mb_internal_encoding使用
    MarkDown编辑使用指南
    test
    [MySQL]修改mysql的root密码
    开启IT之旅_真理不死,信念永恒
    Python pickle 模块
    python注意点
    GAT2.0使用文档(组合接口测试)
  • 原文地址:https://www.cnblogs.com/xffy1028/p/2344319.html
  • Copyright © 2020-2023  润新知