天天看点

Json 异步处理方式

调用方法:

$(document).ready(function () {

            $.ajax({

                url: "xxxxxxxx.ashx",

                data: { op: "方法名", 参数1: "0333", 参数2: "100,1" },

                cache: false,

                dataType: "text",

                type: "post",

                success: function (data) {

                   document.write(data);

                },

                error: function (data) {

                 document.write(data);

                }

            });

        });

ashx的写法: