xml:怎么样使用getElementById
比如,这个xml文件
<?xml version="1.0"?>
<start>
<first>
<one>1111</one>
<two>2222</two>
<three>3333</three>
</first>
<second>
<one>111</one>
<two id="ppp">222</two>
<three>333</three>
</second>
</start>
现在假定在js中已经用ok连接到该xml文件了
现在我就是不知道怎么样用getElementById
直接取得id为"ppp"里头的值222
初学xml,敬请伺教,多谢!