zoukankan      html  css  js  c++  java
  • 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;   
  •     }   
查看全文
  • 相关阅读:
    Activiti Model Editor组件
    Activiti 5.17 实体对象与类和数据库表的映射
    工作流入门链接
    揭秘jbpm流程引擎内核设计思想及构架
    比较Activiti中三种不同的表单及其应用
    Activiti源码分析
    Spring Security教程(5)---- 国际化配置及UserCache
    spring DelegatingFilterProxy管理过滤器
    Apache 处理svg工具包Apache(tm) Batik SVG Toolkit
    Binary Tree Right Side View
  • 原文地址:https://www.cnblogs.com/xffy1028/p/2344319.html
  • Copyright © 2011-2022 走看看