12345678910111213141516171819202122 |
- var config={};config.host="http://v2.xinnongbaohe.com/web/application/front/?";config.type="";config.current="http://www.xinnongbaohe.com/";config.upload="http://image.xinnongbaohe.com/upload";config.assets="http://www.xinnongbaohe.com/assets/lib/";
- var REG_BODY = /<body[^>]*>([\s\S]*)<\/body>/;
- function getBody(content){
- var result = REG_BODY.exec(content);
- if(result && result.length === 2)
- return result[1];
- return content;
- }
- var winSize = function() {
- var e = window,
- a = 'inner';
-
- if (!('innerWidth' in window )){
- a = 'client';
- e = document.documentElement || document.body;
- }
-
- return { width : e[ a+'Width' ] , height : e[ a+'Height' ] };
- };
|