我已經創建了一個XML文檔。所以,現在我想找到好節點並設置這個節點的值,但在對這個主題進行任何研究之後,我不知道該怎麼做。如何設置XML文件的節點?
這是我的文檔:
<?xml version="1.0" encoding="utf-8"?>
<scripts>
<script nom="myTools.class.php">
<titre>Useful php classes</titre>
<date>18/07/2011</date>
<options>
<option name="topic">Tutorials</option>
<option name="desc">Tutorial for you</option>
</options>
</script>
<script nom="index.php">
<titre>blabla</titre>
<date>15/07/2011</date>
<options>
<option name="topic">The homepage</option>
</options>
</script>
</scripts
>
,我就建立與論文值的HTML形式,但在這一刻,我不能獲取和設置,我想: (
我希望得到的第一個「腳本」節點:
<script nom="myTools.class.php"> //How to set the "nom" attribute ?
<titre>Useful php classes</titre> //How to get this value and set it ?
<date>18/07/2011</date>
<options>
<option name="topic">Tutorials</option>
<option name="desc">Tutorial for you</option>
</options>
</script>
我不得不循環中的所有次沒問題e文件,但不是隻有我自己的「選擇」
你有什麼想法嗎?
謝謝,但如何在「選項」節點的屬性訪問? – bahamut100
你想獲得屬性值或通過屬性值獲取選項節點?我在我的回答中寫道 – lovesh