-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.js
58 lines (57 loc) · 1.74 KB
/
main.js
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
/**
* 加载 require.config执行baseUrl为'js',
* baseUrl指的模块文件的根目录,可以是绝对路径或相对路径
* 路由加载页面
*/
'use strict';
var routeJump = function() {
var browser = navigator.appName,
b_version = navigator.appVersion,
version = b_version.split(';'),
routeHref = window.location.href.split('/'),
routeHtml;
for(var j = 0; j < routeHref.length; j++) {
if(routeHref[j].indexOf('.html') > 0) {
routeHtml = routeHref[j].match(/\w+.html+/g)[0];
}
}
if(typeof version[1] !== 'undefined') {
var trim_Version = version[1].replace(/[ ]/g,'');
}
this.init = function() {
var self = this;
self._controlPage();
};
this._trueAndFalseIe = function(type) {
var msIe = type.replace(/[.][\w]/g, '');
if(browser === 'Microsoft Internet Explorer') {
var data = {
MSIE6: 'MSIE6.0',
MSIE7: 'MSIE7.0',
MSIE8: 'MSIE8.0',
MSIE9: 'MSIE9.0'
};
return data[msIe] ? data[msIe] : false;
}
};
this._controlPage = function() {
trim_Version && this._trueAndFalseIe(trim_Version) ? window.location.href = '../../src/404/404.html' : console.log('浏览器版本正常!');
var cacheTimePage = new Date().getTime();
this.objHtml = {
index: 'index.html',
detail: 'detail.html'
};
var load_js;
for(load_js in this.objHtml) {
if(routeHtml === this.objHtml[load_js]) {
var _loadJs = load_js;
require(['../' + load_js + '/' + load_js + '.js?bust=' + cacheTimePage + ''], function(obj) {
obj[''+_loadJs+'Page'](obj);
$.AMUI.progress.start();
});
}
}
};
this.init();
};
new routeJump();