Loading

摘要: 获取 function getAllUrlParams(url) { var queryString = url ? url.split('?')[1] : window.location.search.slice(1); var obj = {}; if (queryString) { query 阅读全文
posted @ 2018-05-24 10:16 算了个球 阅读(994) 评论(0) 推荐(0) 编辑
摘要: var docCookies = { getItem: function (sKey) { return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + encodeURIComponent(sKe 阅读全文
posted @ 2018-05-24 09:39 算了个球 阅读(357) 评论(0) 推荐(0) 编辑
摘要: //获取系统信息 terminal_type, terminal_edition, put_system 参数的值 function agent() { var arr = []; var userAgentInfo = navigator.userAgent; var Agents = ["And 阅读全文
posted @ 2018-05-24 09:37 算了个球 阅读(301) 评论(0) 推荐(0) 编辑
摘要: /* 封装ajax函数 * @param {string}opt.type http连接的方式,包括POST和GET两种方式 * @param {string}opt.url 发送请求的url * @param {boolean}opt.async 是否为异步请求,true为异步的,false为同步 阅读全文
posted @ 2018-05-24 09:32 算了个球 阅读(170) 评论(0) 推荐(0) 编辑