我從本地服務器上下載xml文件時正在從xml文件中獲取數據,它工作正常,但是當我提供xml文件的聯機路徑時,它不起作用。我讀了一些關於它的信息,我認爲這是一個跨域問題,但是如何在html中調用crossdomain文件。在html中添加跨域
<script type="text/javascript">
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","http://www.mydomain.com./myfile/xml_9646.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
</script>
長話短說:你不能。 – freakish 2012-04-14 11:42:35
請問我可以知道原因 – Carlos 2012-04-14 11:48:47
在flash中它是工作文件但如何 – Carlos 2012-04-14 11:49:05