简体   繁体   English

从处理器输出创建对象到append / replaceChild

[英]create object from processor output to append/replaceChild

Attempting to add parameters to an xsl template, for use in a navigation menu. 尝试将参数添加到xsl模板中,以便在导航菜单中使用。

Trying to figure out how to use the output that IXSLProcessor leaves me with. 试图弄清楚如何使用IXSLProcessor留下的输出。

I have the following code that works perfectly for Firefox 我有以下代码非常适合Firefox

var xslStylesheet;
    var xsltProcessor = new XSLTProcessor();
    var myDOM;
    var xmlDoc;
    var myXMLHTTPRequest = new XMLHttpRequest();
    myXMLHTTPRequest.open("GET", "client.xsl", false);
    myXMLHTTPRequest.send(null);

    xslStylesheet = myXMLHTTPRequest.responseXML;
    xsltProcessor.importStylesheet(xslStylesheet);

    // load the xml file
    myXMLHTTPRequest = new XMLHttpRequest();
    myXMLHTTPRequest.open("GET", "client.xml", false);
    myXMLHTTPRequest.send(null);
    xmlDoc = myXMLHTTPRequest.responseXML;

    // set the parameter using the parameter passed to the outputgroup function
    xsltProcessor.setParameter(null, "cid", client);
    xsltProcessor.setParameter(null, "browser", "other");
    var fragment = xsltProcessor.transformToFragment(xmlDoc,document);
    document.getElementById("scriptHook").innerHTML = "";
    document.getElementById("maincontent").replaceChild(fragment, document.getElementById("scriptHook"));
    scroll(0,0);

This is the code I have (mostly pilfered from msdn) 这是我的代码(大部分是从msdn窃取的)

var xslt = new ActiveXObject("Msxml2.XSLTemplate.3.0");
var xsldoc = new ActiveXObject("Msxml2.FreeThreadedDOMDocument.3.0");
var xslproc;
xsldoc.async = false;
xsldoc.load("client.xsl");
if (xsldoc.parseError.errorCode != 0) {
   var myErr = xsldoc.parseError;
   WScript.Echo("You have error " + myErr.reason);
} else {
   xslt.stylesheet = xsldoc;
   var xmldoc = new ActiveXObject("Msxml2.DOMDocument.3.0");
   xmldoc.async = false;
   xmldoc.load("client.xml");
   if (xmldoc.parseError.errorCode != 0) {
      var myErr = xmldoc.parseError;
      WScript.Echo("You have error " + myErr.reason);
   } else {
      xslproc = xslt.createProcessor();
      xslproc.input = xmldoc;
      xslproc.addParameter("cid", client);
      xslproc.addParameter("browser", "ie");
      xslproc.transform();

      //somehow convert xslproc.output to object that can be used in replaceChild

      document.getElementById("scriptHook").innerHTML = "";
      document.getElementById("maincontent").replaceChild(xslproc.output, document.getElementById("scriptHook"));

     }
}

Any and all help is appreciated, cheers. 谢谢您的帮助。

With Mozilla you can exchange nodes between XSLT and DOM but with IE you need to take the XSLT transformation result as a string and feed that to IE's HTML parser; 使用Mozilla,您可以在XSLT和DOM之间交换节点,但是使用IE,您需要将XSLT转换结果作为字符串,并将其提供给IE的HTML解析器。 so for your sample I think you want 所以对于您的样品我想

document.getElementById("scriptHook").outerHTML = xslproc.output;

which will replace the scriptHook element with the result of the transformation. 它将使用转换结果替换scriptHook元素。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM