我的问题很直接,我正在使用 $.ajax 函数来读取 CSV 文件,并且代码在 FF 和 IE9 上运行,但在 Chrome 中却没有......
<!DOCTYPE html>
<html lang="en">
<head>
<script src="http://code.jquery.com/jquery-1.8.2.min.js">
</script>
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "GET",
url: "autorating.csv",
contentType: "text/csv",
success: function(data) {alert('asdsa');}
});
});
</script>
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
任何帮助都会很明显......谢谢