如何使用ajax从另一个div(如iFrame)填充div中的xml文档?

发布于 2024-12-01 15:05:15 字数 481 浏览 0 评论 0原文

我有一个“侧边栏”div,其中包含我想链接到一些 xml 文件的链接。 (xslt引用了其他三个xml文件)我希望xml像iframe一样显示在“body”div中。我找不到一个好的解决方案,因为我使用浏览器的本机 XSL 转换,而不是将 xml “包装”到 html 中。我一直在研究 ajax 解决方案,但只能找到填充 html 或 txt 文件的 ajax 脚本。我还查看了 jquerys .load() 解决方案和 mootools XMLRPC,但对我来说有点复杂。我是 ajax 新手,任何帮助或指导将不胜感激。如果您需要更多背景信息,请点击我上一篇文章的链接。 如何使用 javascript 和三个 XML 文件在 IE 8 和 Chrome 中显示 XSLT?

I have a "sidebar" div with links that I would like to link up to some xml files. (with xslt that references three other xml files) I would like the xml to be displayed in the "body" div kinda like an iframe. I cannot find a good solution for this as I am using the browser's native XSL transformation and not "wrapping" the xml up into html. I have been looking into an ajax solution but can only find ajax scripts that populate html or txt files. I have also looked at jquerys .load() solution and mootools XMLRPC but is a little complicatingfor me. I am new with ajax and any help or direction would be greatly appreciated. Here is a link to my last post if you need more background info. How to display XSLT in IE 8 and Chrome with javascript and three XML files?

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

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

发布评论

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

评论(2

超可爱的懒熊 2024-12-08 15:05:15

您可以使用 IE 的默认样式表:DEFAULTSS.xsl

但是,在 IE 的更高版本中,它不能像以前的版本那样轻松下载(res://msxml.dll/DEFAULTSS.xsl),所以你需要通过搜索找到它。

由于这不是标准 XSLT,因此我建议对其进行修改,例如 XPath 可视化工具

You can use the IE's default stylesheet: DEFAULTSS.xsl

However, in the later versions of IE it cannot be readily downloaded as in the previous versions (res://msxml.dll/DEFAULTSS.xsl), so you need to find it by search.

As this isn't standard XSLT, I would recommend its adaptations such as the one contained in the XPath Visualizer.

木森分化 2024-12-08 15:05:15

我找到了一个解决方案。我使用了我在这个网站上找到的服务器端 php 脚本 -
链接
然后我使用这个ajax脚本来加载xml -
链接
它工作完美。我很高兴。现在我想尝试使用 php 扫描脚本来扫描目录,并使用另一个脚本来创建指向我的新“填充”xml 文档的新链接。具有挑战性——是的,我们会看到的。任何信息或方向将不胜感激。

I have found a SOLUTION. I used a server side php script I found on this site -
link
Then I used this ajax script to load the xml -
link
It works perfectly. I am very happy. Now I would like to try and use a php scan script to scan the directory and another script to create a new link to my new "populated" xml docs. CHALLENGING - yes we will see. Any info or direction would be appreciated.

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