寻找与此 PHP 脚本 (XSLTProcessor) 等效的 JavaScript

发布于 2024-11-04 08:58:50 字数 378 浏览 0 评论 0原文

任何人都可以想出执行此操作所需的 JavaScript 吗?

<?php
# START XSLT
$xslt = new XSLTProcessor(); 
$XSL = new DOMDocument(); 
$XSL->load('example.xsl'); 
$xslt->importStylesheet($XSL); 

# LOAD XML FILE 
$XML = new DOMDocument();
$XML->load('data.xml');

#PRINT 
print $xslt->transformToXML($XML); 
    ?>

谢谢,我正在使用它来转换 HTML 页面上的一些 XML 数据。

Can anyone come up with the javascript needed to do this?

<?php
# START XSLT
$xslt = new XSLTProcessor(); 
$XSL = new DOMDocument(); 
$XSL->load('example.xsl'); 
$xslt->importStylesheet($XSL); 

# LOAD XML FILE 
$XML = new DOMDocument();
$XML->load('data.xml');

#PRINT 
print $xslt->transformToXML($XML); 
    ?>

Thanks, I'm using this to transform some XML data on my HTML page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魔法少女 2024-11-11 08:58:50

将此行添加到 data.xml 中 XML 序言之后:

<?xml-stylesheet type="text/xsl" href="example.xsl"?>

如果您的浏览器支持 XSLT,则应应用转换并显示转换后的结果。

如果您想使用 JavaScript 执行此操作,请查看以下内容:

Add this line to your data.xml after the XML prolog:

<?xml-stylesheet type="text/xsl" href="example.xsl"?>

If your browser supports XSLT, it shouly apply the transformation and display the transformed result.

If you want to do this with JavaScript, have a look at these:

喜爱皱眉﹌ 2024-11-11 08:58:50

使用戈登建议的处理指令可能会为您完成这项工作。如果您需要更多控制,您可能需要查看 Sarissa JavaScript 库,它承诺跨浏览器以可靠的方式进行 XML 处理。

Using a processing instruction as suggested by Gordon might do the job for you. If you need more control, you might want to take a look at the Sarissa JavaScript library, which promises to do XML processing in a reliable fashion across browsers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文