我正在为 html5 中的 android 开发应用程序,我需要读取这样的 xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<noticias>
<dict>
<titulo>Example of title</titulo>
<body>Here goes the body</body>
<subtitulo>whololoooooooo</subtitulo>
<key>dep</key>
<dep>general</dep>
<imgurl></imgurl>
<url>http://www.upcomillas.es/</url>
</dict>
<dict>
<titulo>Another title</titulo>
<body>The body</body>
<subtitulo>whololoooooooo</subtitulo>
<key>dep</key>
<dep>general</dep>
<imgurl></imgurl>
<url>http://www.upcomillas.es/</url>
</dict></noticias>
我正在用 jQuery 做这件事。但是当我尝试我的 html 时(我的 html 是这个)
我正在尝试使用我在网上找到的这段代码,但我在 chrome、safari、firefox 中打开它,它什么也没做!!!:(
我试图找到一种方法来阅读这个 xml,但我真的在互联网上找不到任何东西。有人可以帮忙吗?
非常感谢!!!