Jquery $ .post意外标记<

时间:2013-05-31 14:49:22

标签: jquery token

我即将放弃,

这段代码有什么问题?

<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 

1 个答案:

答案 0 :(得分:1)

我认为你不需要行中的“{}”

  it should be like      $.post('php/taglist.php',function(data) {
你的代码中的

..