/*!
* 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
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
0基础可以根据说明文档对项目进行部署的计算机专业精品毕业设计和课程设计——基于SSM++jsp的汽车配件销售业绩管理系统(源码+论文+说明文档+PPT)。 如今的信息时代,对信息的共享性,信息的流通性有着较高要求,因此传统管理方式就不适合。为了让亚盛汽车配件销售信息的管理模式进行升级,也为了更好的维护亚盛汽车配件销售信息,亚盛汽车配件销售业绩管理系统的开发运用就显得很有必要。并且通过开发亚盛汽车配件销售业绩管理系统,不仅可以让所学的JSP技术得到实际运用,也可以掌握MySQL的使用方法,对自身编程能力也有一个检验和提升的过程。尤其是通过实践,可以对系统的开发流程加深印象,无论是前期的分析与设计,还是后期的编码测试等环节,都可以有一个深刻的了解。 亚盛汽车配件销售业绩管理系统根据调研,确定管理员管理客户,供应商,员工,管理配件和配件的进货以及出售信息。员工只能管理配件和配件的出售以及进货信息,可以修改密码和个人信息。借助于亚盛汽车配件销售业绩管理系统这样的工具,让信息系统化,流程化,规范化是最终的发展结果,让其遵循实际操作流程的情况下,对亚盛汽车配件销售信息实施规范化处理。
资源推荐
资源详情
资源评论
收起资源包目录
基于SSM++jsp的汽车配件销售业绩管理系统(源码+论文+说明文档+PPT)-计算机专业精品毕业设计和课程设计 (1986个子文件)
CommonController.class 10KB
CommonController.class 10KB
YonghuxinxiController.class 8KB
YonghuxinxiController.class 8KB
MPUtil.class 7KB
MPUtil.class 7KB
XiaoshouxinxiController.class 7KB
XiaoshouxinxiController.class 7KB
JinhuoxinxiController.class 6KB
JinhuoxinxiController.class 6KB
UserController.class 6KB
UserController.class 6KB
DictionaryController.class 5KB
DictionaryController.class 5KB
PeijianxinxiController.class 5KB
PeijianxinxiController.class 5KB
GongyingshangxinxiController.class 5KB
GongyingshangxinxiController.class 5KB
PeijianleixingController.class 5KB
PeijianleixingController.class 5KB
KehuxixniController.class 5KB
KehuxixniController.class 5KB
TokenServiceImpl.class 4KB
TokenServiceImpl.class 4KB
FileController.class 4KB
FileController.class 4KB
JinhuoxinxiEntity.class 4KB
JinhuoxinxiEntity.class 4KB
XiaoshouxinxiEntity.class 4KB
XiaoshouxinxiEntity.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
PeijianxinxiEntity.class 3KB
PeijianxinxiEntity.class 3KB
YonghuxinxiEntity.class 3KB
YonghuxinxiEntity.class 3KB
Query.class 3KB
Query.class 3KB
JinhuoxinxiVO.class 3KB
JinhuoxinxiVO.class 3KB
KehuxixniEntity.class 3KB
KehuxixniEntity.class 3KB
UserServiceImpl.class 3KB
UserServiceImpl.class 3KB
TokenEntity.class 3KB
TokenEntity.class 3KB
PageUtils.class 3KB
PageUtils.class 3KB
XiaoshouxinxiVO.class 3KB
XiaoshouxinxiVO.class 3KB
JinhuoxinxiModel.class 3KB
JinhuoxinxiModel.class 3KB
DictionaryVO.class 2KB
DictionaryVO.class 2KB
CommonServiceImpl.class 2KB
CommonServiceImpl.class 2KB
XiaoshouxinxiModel.class 2KB
XiaoshouxinxiModel.class 2KB
DictionaryModel.class 2KB
DictionaryModel.class 2KB
PeijianxinxiVO.class 2KB
PeijianxinxiVO.class 2KB
YonghuxinxiVO.class 2KB
YonghuxinxiVO.class 2KB
GongyingshangxinxiServiceImpl.class 2KB
GongyingshangxinxiServiceImpl.class 2KB
PeijianleixingServiceImpl.class 2KB
PeijianleixingServiceImpl.class 2KB
GongyingshangxinxiEntity.class 2KB
GongyingshangxinxiEntity.class 2KB
XiaoshouxinxiServiceImpl.class 2KB
XiaoshouxinxiServiceImpl.class 2KB
PeijianxinxiServiceImpl.class 2KB
PeijianxinxiServiceImpl.class 2KB
YonghuxinxiServiceImpl.class 2KB
JinhuoxinxiServiceImpl.class 2KB
YonghuxinxiServiceImpl.class 2KB
JinhuoxinxiServiceImpl.class 2KB
PeijianleixingEntity.class 2KB
PeijianleixingEntity.class 2KB
DictionaryServiceImpl.class 2KB
DictionaryServiceImpl.class 2KB
KehuxixniServiceImpl.class 2KB
KehuxixniServiceImpl.class 2KB
PeijianxinxiModel.class 2KB
PeijianxinxiModel.class 2KB
YonghuxinxiModel.class 2KB
YonghuxinxiModel.class 2KB
R.class 2KB
R.class 2KB
ValidatorUtils.class 2KB
ValidatorUtils.class 2KB
KehuxixniVO.class 2KB
KehuxixniVO.class 2KB
共 1986 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
UtopiaYouth
- 粉丝: 434
- 资源: 114
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功