. 代碼如下:
/*
$.ajax({
url : url,
type : 'POST',
data : {
CorpID : CorpID,
Pwd : Pwd,
Mobile : Mobile,
Content : Content,
Cell : '',
SendTime : ''
},
async : true,//異步
dataType : 'text',//'text','jsonp'
success : function(data, textStatus) {
//alert(data);
if (data == 0) {
alert("短信已發送成功,請注意查收!");
} else if (data == -1) {
alert("賬號未注冊!");
} else if (data == -2) {
alert("服務端報錯信息:其他錯誤.");
} else if (data == -3) {
alert("帳號或密碼錯誤!");
} else if (data == -4) {
alert("手機號碼格式不正確!");
} else if (data == -5) {
alert("余額不足,請先充值!");
} else if (data == -6) {
alert("定時發送時間不是有效的時間格式!");
} else if (data == -7) {
alert("禁止10小時以內向同一手機號發送相同短信!");
} else if (data != null) {
alert("返回代碼:" + data);
}
},
error : function(data) {
alert('發送短信: 調用短信接口出錯,請及時聯系管理員!');
}
});
*/