日期:2014-05-16 浏览次数:20880 次
 $.ajax({
        url: root + '/paymentAction.do',
        type: 'POST',
        dataType: 'JSON',
        timeout: 30000, //超时时间:30秒
        data: {
            method: 'queryArea',
            msisdn: msisdn
        },
        error: function () {
            alert('error');
        },
        success: function (json) {
            var data = eval("(" + json + ")");
            alert('seccese');
            if (data.stat == 'fail') {
                return false;
            } else if (data.stat == 'success') {
                queryDiscount();
            } else if (data.stat == 'error') {
                window.location = root + '/InternetFee/error.jsp';
            }
        }
    });

