0
你好,我是新的XML HTTP請求。 和我想加載一個XML文件的代碼,但沒有得到所需的結果。XMLhttp請求未加載
code is :
`<script>
if (window.XMLHttpRequest)
{
var xhttp=new XMLHttpRequest();
}
var url="../src/employee.xml";
xhttp.open('GET',url,true);
xhttp.send();
xmlDoc=xhttp.responseXML;
document.write("XML document loaded into an XML DOM Object.");
</script>
</body>
</html>`
員工在這 <?xml version="1.0" encoding="utf-8"?> <employee> <branch="cse"> <name>Rahul</name> <age>21</age> </branch> </employee>
預先感謝您src文件夾中的XML文件。
沒有你嘗試沒有.. ? – 2013-03-21 20:22:29
是的,我試過它不工作。 – Rahul 2013-03-21 20:27:13
經過一番測試,我發現發送功能不工作。不知道錯誤是什麼,但如果有人告訴我會很高興 – Rahul 2013-03-21 22:12:01