寻找与此 PHP 脚本 (XSLTProcessor) 等效的 JavaScript
任何人都可以想出执行此操作所需的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将此行添加到 data.xml 中 XML 序言之后:
如果您的浏览器支持 XSLT,则应应用转换并显示转换后的结果。
如果您想使用 JavaScript 执行此操作,请查看以下内容:
Add this line to your data.xml after the XML prolog:
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:
使用戈登建议的处理指令可能会为您完成这项工作。如果您需要更多控制,您可能需要查看 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.