如何获取Jquery ajax的php Json数组数据

时间:2017-11-09 06:11:00

标签: php jquery ajax

我的jQuery Ajax代码:

DROP TABLE IF EXISTS myTable;
CREATE TABLE myTable .......

我的Php代码: ............

$(".comment").click(function(){

    var id  =  $(this).data("id");
    var name = $("#username_"+id).val();



    if(name==''){
        alert("Please Fill All Fields");
    }else{

    $.ajax({
        type: "POST",
        url: "comments",
        data:{username:name},

        dataType: "JSON",

        success: function(jsonStr){
            $("#cmt_output").html(JSON.stringify(jsonStr));
        }
    });
    }
});

0 个答案:

没有答案