ローカル システムに xml ファイルがあります。IE と Firefox で実行している jquery でファイルを読み取ることができますが、Chrome と Opera を使用してファイルを読み取ることができません。どこに問題がありますか?
<!DOCTYPE html>
<html>
<head>
<title>AJAX </title>
<script type="text/javascript" src="jq.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function () {
$.support.cors = true;
$.ajax({
type: "GET",
//crossDomain: true,
//contentType: "application/xml",
contentType: "application/xml;charset=UTF-8",
url: "YYYYAAGGu.xml",
//url: "today10.xml",
cache: false,
dataType: "xml",
success: function(xml) {
$(xml).find('Currency').each(function(){
var name = $(this).find("Isim").text()
alert(name);
});
},
error: function(xhr, status, error) {
alert("An error occured: " + status + "\nError: " + error);
}
});
});
</script>
</body>
</html>