问题描述
例如:这是一个xml文件(books.xml)
< book>
< Author name = erty> 4546
<作者姓名=njkh> 536
<作者姓名=nmkj> 767
<作者姓名=uhdf> 8746
我想只显示其属性(名称)值为的元素erty。
我如何使用javascript在html中显示。
我尝试过:
我发现可以使用jquery选择器和document.queryselectorAll()...但我不知道如何在html中使用这些。
请尽快回复。
谢谢!
For ex: this is a xml file(books.xml)
<book>
<Author name="erty">4546
<Author name="njkh">536
<Author name="nmkj">767
<Author name="uhdf">8746
I want to display only the element whose attribute(name) value is "erty".
How do i display that in html using javascript.
What I have tried:
I found that jquery selector and document.queryselectorAll() can be used ...but i dont know how to use these in html.
Please reply as soon as possible.
Thanks!
推荐答案
这篇关于如何根据XML中的属性显示元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!