无法从JSON加载数据

时间:2015-08-05 06:25:53

标签: ajax json

我想从js文件加载json数据(url:'myTurorials.json'抛出错误,所以我使用了.js)

请提前解决,谢谢。

code from 'myTurorials.js' file is as bellow
`[
{"display": "JavaScript Tutorial", "url":"http://www.w3schools.com/js/default.asp"},
{"display": "HTML Tutorial", "url":"http://www.w3schools.com/html/default.asp"},
{"display": "CSS Tutorial", "url": "http://www.w3schools.com/css/default.asp"}
]`
code from 'myTurorials.js' ends here

$(document).ready(function(){	
		$.ajax({
			type : 'GET',
			url : 'myTutorials.js',
			dataType : 'json',
			contentType : 'application/json',
			success: function (response) {
				alert('success');				
			},
			error : function(){
				alert('error');
			},
			complete : function(){
				//init();
			}
		});
});

function init(){
	myFunction(myArray);
}

function myFunction(arr) {
    var out = "";
    var i;
    for(i = 0; i < arr.length; i++) {
        out += '<a href="' + arr[i].url + '">' + arr[i].display + '</a><br>';
    }
    document.getElementById("id01").innerHTML = out;
}
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>HTML5 responsive website tutorial</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans|Baumans' rel='stylesheet' type='text/css'/>
<script>
</script>
<style>
</style>

<!-- my files -->
<script src="jquery.js"></script>
<script src="main.js"></script>
</head>
	<body>
		<div id="id01"></div>
	</body>
</html>

0 个答案:

没有答案