摘要:而且它还是只读的属性,所以通过来改变样式,如果不能修改文件的情况下,只能采用內联。一般的思路就是,先看看有没有內联,如果没有內联,就走一般流程。
欢迎来我的专栏查看系列文章。
样式操作也是 jQuery 比较常用的一个操作,就我本人而言,这个 css 函数用多了,感觉自己有点傻乎乎的,主要还是自己不了解 js 中 css 的真正含义。
不过现在不怕了。
开始之前,先抛开 jQuery,我们来看看一个有趣的面试题(据说是一道微信面试题)。
一道很有深度的面试题用原生的 js 获得一个 HTML 元素的 background-color,当然,这只是一个引入,为什么不是 color,为什么不是 font-size?
css 渲染的优先级写过 css 样式的同学都知道,css 是有优先级区分的,!important优先级最高,內联优先级其次,id,类和伪类,元素和伪元素。优先级会按照顺序依次比较,同一级别相同则看下一级别,优先级相同,后面会覆盖前面。
比如,就像理科生排成绩,规定 总分 > 数学 > 语文 > 英语,如果 A,B 两人总分一样,就看数学成绩谁高,数学成绩一样,就看语文成绩谁高,以此类推。
记得在一家公司实习的时候(初学者),那个时候修改网站的主页样式,由于找不到样式对应,就大量使用 !important,并把所有样式都写在样式标的最后,估计,后面接手的人要气炸吧。
问题来了,对于任意的一个 elem,DIV 也好,P 也好,都只会保留一个 style 样式表,一般可以通过 getComputedStyle 函数或 IE 的 currentStyle 参数活动(万恶的 IE,现在 jQuery 已经不支持低版本 IE,连淘宝都不支持 IE8 了)。无论这个样式表是通过前面哪个优先级获得的,但它一定是唯一且只有一个。而且它还是只读的属性,所以通过 JS 来改变样式,如果不能修改 css 文件的情况下,只能采用內联。
內联有两种,一种是在 elem 上添加一个 style 属性,还有一种是在 HTMl 新建一个 标签,很显然,第一种貌似更符合 js 的特性,因为找到那个 elem 并不困难,而且还有一个 elem.style 可以使用。
js 获取元素样式elem.style 并不是万能的,也有很大的局限性。一般的思路就是,先看看有没有內联,如果没有內联,就走一般流程。
內联值和 getComputedStyle 的值会不一样吗,我自己做过测试,在 chrome 下面,內联值和样式表 getComputedStyle 的值是一样的,而且,当內联值改变,样式表也会跟着改变,除非在 css 文件中有比內联优先级还高的 important,这个时候內联是不起作用的,只能通过样式表来获取。
var dom = document.getElementById("test"); var styleList = getComputedStyle(dom); styleList.color; // "black" dom.style.color = "red"; // 会自动刷新的 styleList.color; // "red"
当 styleList.color 不变的时候,就知道可能有 important 样式的存在,也可以作为判断 important 的一个标准。
样式表有 font-size,有人写成驼峰 fontSize,这可以理解,统一一下就好啦。由于 elem.style 和 getComputedStyle 使用的是驼峰写法(实际上即使用破折法去获取也是可以得到的)要借助下面这两个函数来:
// 变成驼峰 function camel(str){ return str.replace(/-(w)/g, function(m0, m1){ return m1.toUpperCase(); }) } // 变成破折 function dashes(str){ return str.replace(/[A-Z]/g, function(m0){ return "-" + m0.toLowerCase(); }) }
因此:
function getStyle(elem, name){ var value, styles, sty; if(!name){ // 只有一个参数,直接返回吧 return false; } if(elem.nodeType !==1 && elem.nodeType !== 9 && elem.nodeType !== 11){ // 肯定不是 HTMLElement return false; } name = camel(name); //将 name 转变成驼峰 value = elem.style[name]; if(value){ return value; } styles = (sty = elem.currentStyle) ? sty : (sty = document.defaultView.getComputedStyle) ? sty(elem) : {}; return (sty = styles[name]) ? sty : false; } // 测试,无视驼峰和破折 getStyle(dom, "font-size"); // "16px" getStyle(dom, "fontSize"); // "16px"
这道题目还是很有意思的,当然,答案还不止,还可以继续优化,这样可以给面试官好感,链接。
因为我们测的是 background-color,这个属性很特别,当它是 inherit表示继承父类,transparent 表示透明,也该为 flase,看:
function fixColor(elem){ var color = getStyle(elem, "background-color"); if(color){ if(color == "transparent" || color == "rgba(0, 0, 0, 0)") return false; else if(getStyle(elem, "opacity") == "0"){ return false; // 透明 } else if(getStyle(elem, "display") == "none"){ return false; // none } else if(getStyle(elem, "visibility") == "hidden"){ return false; // 隐藏 } } if(color == "inherit"){ // 继承父 return elem.parentNode ? fixColor(elem.parentNode) : false; } return color; }
越来越有意思了。如果是 html5 中的 canvas,貌似又要去找。
fn.css() 源码好吧,步入正题了。我想,如果仔细看了前面面试题的同学,也该对原生 js 操作 css 做法完全懂了,jQuery 的思路也完全是如此,只是多了更多的兼容考虑:
jQuery.fn.extend( { css: function( name, value ) { return access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( jQuery.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); } } );
css 也是有 set 和 get 的,但是它们并不在 fn.css 函数里处理,set 对应 jQuery.style,get 对应 jQuery.css。
在此之前,先来看一个很熟悉的函数:
var getStyles = function( elem ) { // Support: IE <=11 only, Firefox <=30 (#15098, #14150) // IE throws on elements created in popups // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" var view = elem.ownerDocument.defaultView; if ( !view || !view.opener ) { view = window; } return view.getComputedStyle( elem ); };
jQuery 已经不支持 currentStyle,也就是抛弃了低版本 IE 浏览器。
jQuery.extend( { camelCase: function( string ) { return string.replace( /^-ms-/, "ms-" ).replace( /-([a-z])/g, function( all, letter ) { return letter.toUpperCase(); } ); } } );
camelCase 也是一个很熟悉的函数(ms 是有其他用途的)。
jQuery.extend( { style: function( elem, name, value, extra ) { // 处理特殊情况 !elem.style 可以借鉴 if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we"re working with the right name var ret, type, hooks, origName = jQuery.camelCase( name ), style = elem.style; name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName ); // hooks hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we"re setting a value if ( value !== undefined ) { type = typeof value; // Convert "+=" or "-=" to relative numbers (#7345) if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { value = adjustCSS( elem, name, ret ); // Fixes bug #9237 type = "number"; } // Make sure that null and NaN values aren"t set (#7116) if ( value == null || value !== value ) { return; } // If a number was passed in, add the unit (except for certain CSS properties) if ( type === "number" ) { value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); } // background-* props affect original clone"s values if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !( "set" in hooks ) || ( value = hooks.set( elem, value, extra ) ) !== undefined ) { style[ name ] = value; } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { return ret; } // 千辛万苦,终于等到你 return style[ name ]; } } } );
jQuery.extend( { css: function( elem, name, extra, styles ) { var val, num, hooks, origName = jQuery.camelCase( name ); // Make sure that we"re working with the right name name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName ); // Try prefixed name followed by the unprefixed name hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } // Convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Make numeric if forced or a qualifier was provided and val looks numeric if ( extra === "" || extra ) { num = parseFloat( val ); return extra === true || isFinite( num ) ? num || 0 : val; } return val; } } );总结
如果你对 css 看起来很吃力,请把那个微信面试题再仔细阅读一下吧。
参考解密jQuery内核 样式操作
CSS并不简单--一道微信面试题的实践
微信面试题-获取元素的最终background-color
本文在 github 上的源码地址,欢迎来 star。
欢迎来我的博客交流。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/86828.html
摘要:需要把的元信息从中解析出来,做一些检查,然后把的元信息持久化保存到中。主要做件事修改的元信息,把加入到的元信息中去。从队列中取出,根据的类型调用函数。的状态变为之后,会调用将的元信息从上删除。 DDL 是数据库非常核心的组件,其正确性和稳定性是整个 SQL 引擎的基石,在分布式数据库中,如何在保证数据一致性的前提下实现无锁的 DDL 操作是一件有挑战的事情。本文首先会介绍 TiDB D...
摘要:一团队组织网站说明腾讯团队腾讯前端团队,代表作品,致力于前端技术的研究腾讯社交用户体验设计,简称,腾讯设计团队网站腾讯用户研究与体验设计部百度前端研发部出品淘宝前端团队用技术为体验提供无限可能凹凸实验室京东用户体验设计部出品奇舞团奇虎旗下前 一、团队组织 网站 说明 腾讯 AlloyTeam 团队 腾讯Web前端团队,代表作品WebQQ,致力于前端技术的研究 ISUX 腾...
摘要:一团队组织网站说明腾讯团队腾讯前端团队,代表作品,致力于前端技术的研究腾讯社交用户体验设计,简称,腾讯设计团队网站腾讯用户研究与体验设计部百度前端研发部出品淘宝前端团队用技术为体验提供无限可能凹凸实验室京东用户体验设计部出品奇舞团奇虎旗下前 一、团队组织 网站 说明 腾讯 AlloyTeam 团队 腾讯Web前端团队,代表作品WebQQ,致力于前端技术的研究 ISUX 腾...
阅读 1162·2021-10-11 10:59
阅读 1952·2021-09-29 09:44
阅读 837·2021-09-01 10:32
阅读 1409·2019-08-30 14:21
阅读 1847·2019-08-29 15:39
阅读 2959·2019-08-29 13:45
阅读 3514·2019-08-29 13:27
阅读 1985·2019-08-29 12:27