-1
我有這個XML文件,我想查找lektion_lexi_margin
值。關於該值唯一已知的是屬性thessi
。我怎麼能做到這一點?使用jQuery在XML文件中查找屬性
我嘗試下面的代碼沒有成功
margin_left = $("[thessi$="+Pc+"]").attr("lektion_lexi_margin");
<?xml version="1.0" encoding="UTF-8"?>
<lektionen>
<Lektion>
<lektion></lektion>
<lektion_buch>Arbeitsbuch</lektion_buch>
<lektion_frage_text_ap view="" typ="" thessi=""></lektion_frage_text_ap>
<lektion_photo thessi=""></lektion_photo>
<lektion_teil></lektion_teil>
<lektion_title></lektion_title>
<lektion_bearbeitung>
<lektion_ap thessi="1" lektion_lexi_margin="7">was</lektion_ap>
<lektion_ap thessi="3" lektion_lexi_margin="10">das</lektion_ap>
</lektion_bearbeitung>
</Lektion>
</lektionen>