2014-03-07 42 views
0

選擇XML節點我有一個簡單的代碼,應提醒從最後一個元素「期限」節點「說明」的文字,但我沒有得到任何警告:如何在Chrome

var xmlhttp = new XMLHttpRequest(); 

xmlhttp.open("GET", "Dictionary.xml", true); 
xmlhttp.send(); 
xmlDictionary = xmlhttp.responseXML; 

var Decnod=xmlDictionary.evaluate("Terms/Term[last()]/Key/Desc[text()]", xmlDictionary, null, XPathResult.ANY_TYPE, null); 

alert(Decnod); 
+1

您是否收到錯誤消息?你的'Dictionary.xml'文件是什麼樣的? – doque

+0

嘗試使用以下內容運行Chrome:「C:\ ... \ Application \ chrome.exe - 允許從文件訪問文件」 – Odinn

回答

0

解決它!已更改 xmlhttp.open(「GET」,「Dictionary.xml」,true); 到 xmlhttp.open(「GET」,「Dictionary.xml」,false);