このxmlをjQueryなどで読みやすくしたいと思います。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Film SYSTEM "film_commentaries_opinion.dtd">
<Film lang="fr" title="Mixed" originalTitle="">
<Actors>
</Actors>
<Comments>
<Comment>films adapted from comic <Tag length="5" />books have had plenty
of success, whether they're about superheroes (batman, superman, spawn),
or geared toward kids (casper) or the arthouse crowd (ghost world), but
there's never really been a comic <Tag length="4" />book like from
hell before. For starters, it was created by Alan Moore
(and Eddie Campbell), who brought the medium to a whole new level in the
mid '80s with a 12-part series called the watchmen.</Comment>
</Comments>
</Film>
もちろん、金持ちの皇帝クライアントから提供されたxmlを変更することはできません。もちろん、取得したいのは「本」という単語と「本」という単語です。私が選ぶ必要がある次の単語の長さを表す「長さ」を私に与えます。<Tag />
どうやってやるの?
今のところ私は使用します:
$.ajax({
type: 'GET', url: 'data/mergedXML_PangLee.xml.tag.xml', dataType: 'xml',
success: function(xml) {
var tags = $(xml).find("Tag");
// other code here...
}