嗨,谁能帮我将 json 加载到 jquery 中,我似乎只能让它在这个 structor 中工作
{“名称”:“Zemi All”,“smpx”:“2564”,“scuser”:“zajihi”,“scfollowers”:“女性”}
这是我的格式页面 - http://newmusicproducer.com/filterable/indexj.php
我的代码如下:
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("#driver").click(function(event){
$.getJSON('test.json', function(data) {
$.each(data.results,function(){
$('#stage').html('<p> Name: ' + data.name + '</p>');
$('#stage').append('<p> Smpx : ' + data.smpx+ '</p>');
$('#stage').append('<p> Scuser: ' + data.scuser+ '</p>');
$('#stage').append('<p> Scfollowers: ' + data.scfollowers+ '</p>');
});
});
});
});
</script>
</head>
<body>
<p>Click on the button to load results:</p>
<div id="stage" style="background-color:blue;">
Display area.
</div>
<input type="button" id="driver" value="Load Data" />
</body>