如上

解决方案 »

  1.   


     $.ajax({
                url: 'product.ashx',
                type: 'GET',
                data: '参数列表',
                async: false,
                cache: false,
                dataType: 'json',
                success: function(jsonResult) {
                    //操作的返回的数据
                },
                error: function(xhr, textStatus, errorThrown) {
                }
            });