尝试使用JSON
中的jQuery
和AJAX
加载PHP
文件中的内容,但该功能仅返回[object Object],[object Object],[object Object]
。
这是JSON文件。
{"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]}
以下是我正在使用的代码。
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("button").click(function() {
$.ajax({
url: 'testing.txt',
type: 'GET',
dataType: 'json',
success: function(result) {
alert(result['employees']);
},
error: function() {
alert("error");
}
});
});
});
</script>
</head>
<body>
<div id="div1">
<h2>Let jQuery AJAX Change This Text</h2>
</div>
<button>Get External Content</button>
</body>
</html>
我做错了什么?
答案 0 :(得分:1)
尝试以下操作将json显示在页面上:
你使用点选择器根据属性名称选择字段的值,因为我们有一个数组,所以employees属性差别不大,所以我们循环遍历它
success: function(result) {
$('#div1').empty();
$.each(result.employees,function(i,v){
$('#div1').append('<h2>'+v.firstName+' - '+v.lastName+'</h2>');
});
},