/*!
* 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项目源码,该项目包含完整的前后端代码、数据库脚本和相关工具,简单部署即可运行。功能完善、界面美观、操作简单,具有很高的实际应用价值,非常适合作为Java毕业设计或Java课程设计使用。 所有项目均经过严格调试,确保可运行!下载后即可快速部署和使用。 1 适用场景: 毕业设计 期末大作业 课程设计 2 项目特点: 代码完整:详细代码注释,适合新手学习和使用 功能强大:涵盖常见的核心功能,满足大部分课程设计需求 部署简单:有基础的人,只需按照教程操作,轻松完成本地或服务器部署 高质量代码:经过严格测试,确保无错误,稳定运行 3 技术栈和工具 前端:HTML/Vue.js 后端框架:SSM 开发环境:IntelliJ IDEA 数据库:MySQL(建议使用 5.7 版本,更稳定) 数据库可视化工具:Navicat 部署环境:Tomcat(推荐 7.x 或 8.x 版本),Maven
资源推荐
资源详情
资源评论
收起资源包目录
基于 Java Web 的校园驿站管理系统+jsp(Java毕业设计,附源码,数据库,教程).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
XitonggonggaoServiceImpl.class 2KB
ShoujianxinxiServiceImpl.class 2KB
ShoujianxinxiServiceImpl.class 2KB
YuangongxinxiServiceImpl.class 2KB
XitonggonggaoServiceImpl.class 2KB
LiuyanxinxiServiceImpl.class 2KB
CangkuxinxiServiceImpl.class 2KB
YonghuxinxiServiceImpl.class 2KB
CangkuxinxiServiceImpl.class 2KB
LiuyanxinxiServiceImpl.class 2KB
YonghuxinxiServiceImpl.class 2KB
WuliuxinxiServiceImpl.class 2KB
DictionaryServiceImpl.class 2KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
程序员徐师兄
- 粉丝: 1991
- 资源: 2883
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 条件方差总和 (SCV) 是多模态图像配准的新相似性指标Matlab代码.rar
- 通过 FFT 按总(广义)变化进行图像降噪Matlab代码.rar
- 填充圆圈或麦田圈区域Matlab代码.rar
- 通过 RGB-HSI 图像融合提高图像空间分辨率的 GUI Matlab.rar
- 通过 HSV 色彩空间中的阈值检测图像中的彩色区域。.rar
- 通过 RGB-HSI 图像融合提高图像空间分辨率的 GUI MATLAB代码.rar
- 通过使用强度平均值度量从用户定义的种子点生长区域来进行分割。.rar
- 通过使用强度平均度量从种子点生长区域进行分割Matlab代码.rar
- 通过基于 Adaptive Cuckoo 搜索的 Wiener 滤波器进行多光谱图像去噪Matlab代码.rar
- 通过在矩形波导中设计耦合腔体滤波器Matlab代码.rar
- 图像 2D 变换 平移 旋转 缩放Matlab代码.rar
- 图像的 Choatic Baker 映射解密Matlab代码.rar
- 图像的对比度调整Matlab代码.rar
- 通过自适应核回归实现视频超分辨率Matlab代码.rar
- 图像的哈希值Matlab代码.rar
- 图像对比度拉伸Matlab代码.rar
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功