我有一个简单的 jquery ajax 表单提交。在提交我的 php 脚本回显的 json_decode($result)
这是我的 ajax 脚本
<script>
$("#ajaxquery").live( "submit" , function(){
// Intercept the form submission
var formdata = $(this).serialize(); // Serialize all form data
// Post data to your PHP processing script
$.get( "getdata.php", formdata, function( data ) {
// Act upon the data returned, setting it to #success <div>
$("#success").html ( data );
});
return false; // Prevent the form from actually submitting
});
</script>
问题是数据以 json 格式显示。
目前我的输出是这样的:
[{"id":4,"comments":1,"likes":15,"books":3,"name":"steve"}]
如何在列表中显示数据:-
<ul>
<li>id</li>
<li>name</li>
<ul>
或者有没有办法在变量中获取这些值?