forked from Darylxyx/JavaScript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.js
More file actions
63 lines (55 loc) · 2.26 KB
/
base.js
File metadata and controls
63 lines (55 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;(function(window, document, undefined) {
function Base() {}
Base.prototype.server = function(Ajax, data, url, callback, type, dataType) { //Server方法
Ajax({
data: data || {},
type: type || 'get',
url: url,
dataType: dataType || 'json',
done: (res) => {
callback && callback(res);
}
});
};
Base.prototype.queryParams = function() { //获取查询字符串参数
var search = location.search,
theRequest = {};
if (search.indexOf('?') < 0) {
return;
}
search = search.substr(1);
var paramArr = search.split('&'),
max = paramArr.length;
for (var i = 0; i < max; i ++) {
theRequest[paramArr[i].split('=')[0]] = unescape(paramArr[i].split('=')[1]);
}
return theRequest;
};
Base.prototype.checkPlatforms = function() {
var u = navigator.userAgent, app = navigator.appVersion;
return {
trident: u.indexOf('Trident') > -1, //IE内核
presto: u.indexOf('Presto') > -1, //opera内核
webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,//火狐内核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
iPhone: u.indexOf('iPhone') > -1 , //是否为iPhone或者QQHD浏览器
iPad: u.indexOf('iPad') > -1, //是否iPad
webApp: u.indexOf('Safari') == -1, //是否web应该程序,没有头部与底部
weixin: u.indexOf('MicroMessenger') > -1, //是否微信 (2015-01-22新增)
qq: u.match(/\sQQ/i) == " qq" //是否QQ
};
};
var basefn = new Base();
window.basefn = basefn;
})(window, document);
if (typeof module !== 'undefined') {
module.exports = window.basefn;
} else if (typeof define === 'function' && define.amd) {
define([], function () {
'use strict';
return window.basefn;
});
}