生活随笔
收集整理的這篇文章主要介紹了
api.js
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
| ylbtech-JavaScript-util: api.js |
API 代理接口
| 1.B,JS-Source Code(源代碼)返回頂部 |
1.B.1, m.yintai
/*
調用接口
*/
function call(methodName, method, ver, data, successCallback) {data.methodName =
methodName;data.method =
method;data.ver =
ver;url = "http://m.yintai.com/Services/Proxy.ashx?r=" +
Math.random();$.ajax({url: url,dataType: "json"
,data: data,success: function (result) {if (result.isSuccessful) {successCallback(result);}else {if (result.data !=
undefined) {alert(result.data.description);}else {alert(result.description);}}},error: function (XMLHttpRequest, textStatus, errorThrown) {//alert(errorThrown);
}});
} View Code 1.B.2,
| 1.C,JS-Relevent References(相關引用)返回頂部 |
?
| 作者:ylbtech 出處:http://ylbtech.cnblogs.com/ 本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責任的權利。 |
總結
以上是生活随笔為你收集整理的api.js的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。