3

我快要放弃了

这段代码有什么问题?

<script type="text/javascript">
    $(document).ready(function() {
    $.post('php/taglist.php',{},function(response) {
    var arr = $.parseJSON(response);
    console.log(arr);
    });
    });
</script>

这就是我在控制台日志中得到的:

Uncaught SyntaxError: Unexpected token < jquery.min.js:3
b.extend.parseJSON jquery.min.js:3
(anonymous function)
c jquery.min.js:3
p.fireWith jquery.min.js:3
k jquery.min.js:5
r jquery.min.js:5 
4

1 回答 1

1

我认为你不需要'{}'

  it should be like      $.post('php/taglist.php',function(data) {

在你的代码中..

于 2013-06-19T07:27:12.167 回答