/*!
* UEditor
* version: ueditor
* build: Wed Aug 10 2016 11:06:16 GMT+0800 (CST)
*/
(function(){
// editor.js
UEDITOR_CONFIG = window.UEDITOR_CONFIG || {};
var baidu = window.baidu || {};
window.baidu = baidu;
window.UE = baidu.editor = window.UE || {};
UE.plugins = {};
UE.commands = {};
UE.instants = {};
UE.I18N = {};
UE._customizeUI = {};
UE.version = "1.4.3";
var dom = UE.dom = {};
// core/browser.js
/**
* 浏览器判断模块
* @file
* @module UE.browser
* @since 1.2.6.1
*/
/**
* 提供浏览器检测的模块
* @unfile
* @module UE.browser
*/
var browser = UE.browser = function(){
var agent = navigator.userAgent.toLowerCase(),
opera = window.opera,
browser = {
/**
* @property {boolean} ie 检测当前浏览器是否为IE
* @example
* ```javascript
* if ( UE.browser.ie ) {
* console.log( '当前浏览器是IE' );
* }
* ```
*/
ie : /(msie\s|trident.*rv:)([\w.]+)/.test(agent),
/**
* @property {boolean} opera 检测当前浏览器是否为Opera
* @example
* ```javascript
* if ( UE.browser.opera ) {
* console.log( '当前浏览器是Opera' );
* }
* ```
*/
opera : ( !!opera && opera.version ),
/**
* @property {boolean} webkit 检测当前浏览器是否是webkit内核的浏览器
* @example
* ```javascript
* if ( UE.browser.webkit ) {
* console.log( '当前浏览器是webkit内核浏览器' );
* }
* ```
*/
webkit : ( agent.indexOf( ' applewebkit/' ) > -1 ),
/**
* @property {boolean} mac 检测当前浏览器是否是运行在mac平台下
* @example
* ```javascript
* if ( UE.browser.mac ) {
* console.log( '当前浏览器运行在mac平台下' );
* }
* ```
*/
mac : ( agent.indexOf( 'macintosh' ) > -1 ),
/**
* @property {boolean} quirks 检测当前浏览器是否处于“怪异模式”下
* @example
* ```javascript
* if ( UE.browser.quirks ) {
* console.log( '当前浏览器运行处于“怪异模式”' );
* }
* ```
*/
quirks : ( document.compatMode == 'BackCompat' )
};
/**
* @property {boolean} gecko 检测当前浏览器内核是否是gecko内核
* @example
* ```javascript
* if ( UE.browser.gecko ) {
* console.log( '当前浏览器内核是gecko内核' );
* }
* ```
*/
browser.gecko =( navigator.product == 'Gecko' && !browser.webkit && !browser.opera && !browser.ie);
var version = 0;
// Internet Explorer 6.0+
if ( browser.ie ){
var v1 = agent.match(/(?:msie\s([\w.]+))/);
var v2 = agent.match(/(?:trident.*rv:([\w.]+))/);
if(v1 && v2 && v1[1] && v2[1]){
version = Math.max(v1[1]*1,v2[1]*1);
}else if(v1 && v1[1]){
version = v1[1]*1;
}else if(v2 && v2[1]){
version = v2[1]*1;
}else{
version = 0;
}
browser.ie11Compat = document.documentMode == 11;
/**
* @property { boolean } ie9Compat 检测浏览器模式是否为 IE9 兼容模式
* @warning 如果浏览器不是IE, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.ie9Compat ) {
* console.log( '当前浏览器运行在IE9兼容模式下' );
* }
* ```
*/
browser.ie9Compat = document.documentMode == 9;
/**
* @property { boolean } ie8 检测浏览器是否是IE8浏览器
* @warning 如果浏览器不是IE, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.ie8 ) {
* console.log( '当前浏览器是IE8浏览器' );
* }
* ```
*/
browser.ie8 = !!document.documentMode;
/**
* @property { boolean } ie8Compat 检测浏览器模式是否为 IE8 兼容模式
* @warning 如果浏览器不是IE, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.ie8Compat ) {
* console.log( '当前浏览器运行在IE8兼容模式下' );
* }
* ```
*/
browser.ie8Compat = document.documentMode == 8;
/**
* @property { boolean } ie7Compat 检测浏览器模式是否为 IE7 兼容模式
* @warning 如果浏览器不是IE, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.ie7Compat ) {
* console.log( '当前浏览器运行在IE7兼容模式下' );
* }
* ```
*/
browser.ie7Compat = ( ( version == 7 && !document.documentMode )
|| document.documentMode == 7 );
/**
* @property { boolean } ie6Compat 检测浏览器模式是否为 IE6 模式 或者怪异模式
* @warning 如果浏览器不是IE, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.ie6Compat ) {
* console.log( '当前浏览器运行在IE6模式或者怪异模式下' );
* }
* ```
*/
browser.ie6Compat = ( version < 7 || browser.quirks );
browser.ie9above = version > 8;
browser.ie9below = version < 9;
browser.ie11above = version > 10;
browser.ie11below = version < 11;
}
// Gecko.
if ( browser.gecko ){
var geckoRelease = agent.match( /rv:([\d\.]+)/ );
if ( geckoRelease )
{
geckoRelease = geckoRelease[1].split( '.' );
version = geckoRelease[0] * 10000 + ( geckoRelease[1] || 0 ) * 100 + ( geckoRelease[2] || 0 ) * 1;
}
}
/**
* @property { Number } chrome 检测当前浏览器是否为Chrome, 如果是,则返回Chrome的大版本号
* @warning 如果浏览器不是chrome, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.chrome ) {
* console.log( '当前浏览器是Chrome' );
* }
* ```
*/
if (/chrome\/(\d+\.\d)/i.test(agent)) {
browser.chrome = + RegExp['\x241'];
}
/**
* @property { Number } safari 检测当前浏览器是否为Safari, 如果是,则返回Safari的大版本号
* @warning 如果浏览器不是safari, 则该值为undefined
* @example
* ```javascript
* if ( UE.browser.safari ) {
* console.log( '当前浏览器是Safari' );
* }
* ```
*/
if(/(\d+\.\d)?(?:\.\d)?\s+safari\/?(\d+\.\d+)?/i.test(agent) && !/chrome/i.test(agent)){
browser.safari = + (RegExp['\x241'] || RegExp['\x242']);
}
// Opera 9.50+
if ( browser.opera )
version = parseFloat( opera.version() );
// WebKit 522+ (Safari 3+)
if ( browser.webkit )
version = parseFloat( agent.match( / applewebkit\/(\d+)/ )[1] );
/**
* @property { Number } version 检测当前浏览器版本号
* @remind
* <ul>
* <li>IE系列返回值为5,6,7,8,9,10等</li>
* <li>gecko系列会返回10900,158900等</li>
* <li>webkit系列会返回其build号 (如 522等)</li>
* </ul>
* @example
* ```javascript
* console.log( '当前浏览器版本号是: ' + UE.browser.version );
* ```
*/
browser.version = version;
/**
* @property { boolean } isCompatible 检测当前浏览器是否能够与UEditor良好兼容
* @example
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
技术选型 【后端】:Java 【框架】:ssm 【前端】:vue/jsp 【JDK版本】:JDK1.8 【服务器】:tomcat7+ 【数据库】:mysql 5.7+ 包含:项目源码、数据库脚本等,该项目源码可作为毕设使用。 项目都经过严格调试,确保可以运行! 具体项目介绍可查看博主文章 扫描图片二维码可免费代写开题报告
资源推荐
资源详情
资源评论
收起资源包目录
ssm2016基于JavaWeb的校园驿站管理系统+jsp.zip (2000个子文件)
CommonController.class 10KB
CommonController.class 10KB
YuangongxinxiController.class 8KB
YuangongxinxiController.class 8KB
YonghuxinxiController.class 8KB
YonghuxinxiController.class 8KB
MPUtil.class 7KB
MPUtil.class 7KB
FahuoxinxiController.class 6KB
FahuoxinxiController.class 6KB
ShoujianxinxiController.class 6KB
ShoujianxinxiController.class 6KB
UserController.class 6KB
UserController.class 6KB
CangkuxinxiController.class 6KB
CangkuxinxiController.class 6KB
WuliuxinxiController.class 5KB
WuliuxinxiController.class 5KB
FahuoxinxiEntity.class 5KB
FahuoxinxiEntity.class 5KB
DictionaryController.class 5KB
DictionaryController.class 5KB
CangkuxinxiEntity.class 5KB
CangkuxinxiEntity.class 5KB
XitonggonggaoController.class 5KB
XitonggonggaoController.class 5KB
ShoujianxinxiEntity.class 5KB
ShoujianxinxiEntity.class 5KB
TokenServiceImpl.class 4KB
TokenServiceImpl.class 4KB
FileController.class 4KB
FileController.class 4KB
LiuyanxinxiController.class 4KB
LiuyanxinxiController.class 4KB
BaiduUtil.class 4KB
BaiduUtil.class 4KB
ConfigController.class 4KB
ConfigController.class 4KB
DictionaryEntity.class 4KB
DictionaryEntity.class 4KB
AuthorizationInterceptor.class 3KB
AuthorizationInterceptor.class 3KB
CangkuxinxiVO.class 3KB
CangkuxinxiVO.class 3KB
LiuyanxinxiEntity.class 3KB
LiuyanxinxiEntity.class 3KB
FahuoxinxiVO.class 3KB
FahuoxinxiVO.class 3KB
XitonggonggaoEntity.class 3KB
XitonggonggaoEntity.class 3KB
CangkuxinxiModel.class 3KB
CangkuxinxiModel.class 3KB
YuangongxinxiEntity.class 3KB
YuangongxinxiEntity.class 3KB
YonghuxinxiEntity.class 3KB
YonghuxinxiEntity.class 3KB
Query.class 3KB
Query.class 3KB
FahuoxinxiModel.class 3KB
FahuoxinxiModel.class 3KB
ShoujianxinxiVO.class 3KB
ShoujianxinxiVO.class 3KB
WuliuxinxiEntity.class 3KB
WuliuxinxiEntity.class 3KB
UserServiceImpl.class 3KB
UserServiceImpl.class 3KB
TokenEntity.class 3KB
TokenEntity.class 3KB
Common.class 3KB
Common.class 3KB
PageUtils.class 3KB
PageUtils.class 3KB
ShoujianxinxiModel.class 3KB
ShoujianxinxiModel.class 3KB
DictionaryVO.class 2KB
DictionaryVO.class 2KB
LiuyanxinxiVO.class 2KB
LiuyanxinxiVO.class 2KB
DictionaryModel.class 2KB
DictionaryModel.class 2KB
XitonggonggaoVO.class 2KB
XitonggonggaoVO.class 2KB
LiuyanxinxiModel.class 2KB
LiuyanxinxiModel.class 2KB
CommonServiceImpl.class 2KB
CommonServiceImpl.class 2KB
YuangongxinxiServiceImpl.class 2KB
ShoujianxinxiServiceImpl.class 2KB
XitonggonggaoServiceImpl.class 2KB
YuangongxinxiServiceImpl.class 2KB
ShoujianxinxiServiceImpl.class 2KB
XitonggonggaoServiceImpl.class 2KB
LiuyanxinxiServiceImpl.class 2KB
CangkuxinxiServiceImpl.class 2KB
YonghuxinxiServiceImpl.class 2KB
LiuyanxinxiServiceImpl.class 2KB
CangkuxinxiServiceImpl.class 2KB
YonghuxinxiServiceImpl.class 2KB
DictionaryServiceImpl.class 2KB
WuliuxinxiServiceImpl.class 2KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
Java码库
- 粉丝: 2404
- 资源: 6186
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 暗能量巡天图像处理流水线及其天文观测应用
- 耶拉索世界.exe耶拉索世界1.exe耶拉索世界2.exe
- 公司部门年终总结PPT模板
- 基于MATLAB的自动控制原理课程设计:火炮控制系统的串联校正
- 基于springboot的汽车配件销售管理系统源码(java毕业设计完整源码).zip
- 单片机,微处理器,实验报告及要求,全部要求
- 基于springboot的沉浸式戏曲文化体验系统源码(java毕业设计完整源码).zip
- 基于卷积神经网络的水果图像处理综述
- 无谓幻想.exe无谓幻想1.exe无谓幻想2.exe
- 基于springboot的洪涝灾害应急信息管理系统设计与实现源码(java毕业设计完整源码+LW).zip
- 基于springboot的流浪动物管理系统源码(java毕业设计完整源码+LW).zip
- 基于地面机器视觉与图像处理技术的杂草检测综述
- CH341SER驱动,windows
- 机器人克拉克.exe机器人克拉克1.exe
- 基于springboot的流浪猫狗救助系统源码(java毕业设计完整源码).zip
- 极速蜗牛中文字幕,以后更新更多动画电影
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功