熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

jquery異步跨域訪問代碼

2022-06-13   來源: JSP教程 
下面是關於jquery異步跨域訪問的簡單實例需要的朋友可以參考一下   復制代碼 代碼如下:

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


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20034.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.