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 に答える