var ralpha = /alpha\([^)]*\)/i, //匹配如:alpha(opacity=20)
ropacity = /opacity=([^)]*)/, //匹配如:filter:alpha(opacity=20)等形式
// fixed for IE9, see #8346
rupper = /([A-Z]|^ms)/g, //此处暂不明,但觉厉,需再探究下
rnum = /^[\-+]?(?:\d*\.)?\d+$/i, //匹配数字(包括浮点),如(+/-)1、(+/-)0.1、(+/-).1、(+/-)1.1
rnumnonpx = /^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i, //非px值,如'10em'、'10%'等
rrelNum = /^([\-+])=([\-+.\de]+)/, //设置属性支持相对写法,如$('#header').css('height', '+=10px')等。。
rmargin = /^margin/, //属性是否为margin开头的,如margin-left、margin-top等
cssShow = { position: "absolute", visibility: "hidden", display: "block" }, //对于offsetHeight或offsetWidth为0的元素
// order is important!
cssExpand = [ "Top", "Right", "Bottom", "Left" ], //计算宽、高用到
curCSS, //最终只是把getComputedStyle或currentStyle方法其中之一赋给curCss
getComputedStyle, //遵守标准的浏览器获取css样式的方法
currentStyle; //IE浏览器获取css样式的方法