0


我正在使用 jQuery xml2json 插件(http://www.fyneworks.com/jquery/xml-to-json/)将 xml 解析为 json,但它在 IE 中无法正常工作。我想知道是否有人可以帮助我处理这个问题。

这是我要转换为 json 的 xml 示例:<?xml version='1.0' encoding='iso-8859-1' standalone='no'?> <context> <object objid="228" author="johnDoe" creation-date="2012-10-24 22:55:09.0" last-updated="2012-10-24 22:55:09.0" type="objectType" name="ojectTest" availability="public" status="active"> <attribute-set> <attribute attid="399" name="Geo-Location" value=" 12.1234567_-32.1234567" time="2012-10-24 22:56:10.0"/> </attribute-set> <relation-set> </relation-set> </object></context>

提前致谢。

4

1 回答 1

0

也许 IE 你的单引号有问题。尝试只使用双引号

<?xml version="1.0" encoding="iso-8859-1" ...
于 2013-02-05T23:58:14.057 回答