Simindey
6/12/2017 - 6:30 PM

Простой ajax запрос

Простой ajax запрос

        $.ajax({
                type: "POST",
                url: '/pro/scripts/main.php',
                data:{sizes:data, act:800, id:id},
                success: function (msg) {
                  // alert(msg);
                    if (msg != undefined || msg != "") {
                        respone = JSON.parse(msg);
                        if (respone['status'] == 'true' ) {
                                $(".products_list tr[id="+respone['ID']+"] .before_saving_no_size ").html("Сохрнено");
                        }
                        else if (respone['status'] == 'false') {
                               $(".products_list tr[id="+respone['ID']+"] .before_saving_no_size ").html("Не Сохрнено");
                        }
                    }
                }
        });