我编写了一个非常简单的插件,允许我使用0xffccaa
格式代替'#ffccaa'
(主要是为了避免编写引号) - 但也可以通过简单地添加到颜色来轻松修改颜色它是一个整数)。
我的目标是$().xcss({})
,但我更愿意使用$().css({})
。
如何扩展$.fn.css
功能的功能,是否有任何需要注意的缺陷?
另外,我想我会想对$.animate
做同样的事情。
小提琴:http://jsfiddle.net/hB4R8/
// pugin wrapper
(function($){ $.fn.xcss = function(opts){
// loop through css color properties
$.each(['background', 'backgroundColor','background-color', 'color', 'borderColor','border-color'],function(i,v){
// if set as number (will be integer - not hex at this point)
// convert the value to `#ffccaa` format (adds padding if needed)
if(typeof opts[v] === 'number')
opts[v] = ('00000'+opts[v].toString(16)).replace(/.*([a-f\d]{6})$/,'#$1')
})
// run css funciton with modified options
this.css(opts)
// allow chaining
return this
} })(jQuery)
// test the plugin
$('body').xcss({
'background-color': 0xffccFF,
color: 0xccffcc,
border: '3px solid red',
borderColor:0x0ccaa,
padding:50
}).html('<h1>This should be a funny color</h1>')
答案 0 :(得分:5)
这似乎对我有用:http://jsfiddle.net/frfdj/
(function($) {
var _css = $.fn.css; // store method being overridden
$.fn.css = function(opts) {
$.each(['background', 'backgroundColor', 'background-color', 'color', 'borderColor', 'border-color'], function(i, v) {
if (typeof opts[v] === 'number') opts[v] = ('00000' + opts[v].toString(16)).replace(/.*([a-f\d]{6})$/, '#$1')
})
return _css.apply(this, [opts]); // call original method
}
})(jQuery)
答案 1 :(得分:2)
https://github.com/aheckmann/jquery.hook/blob/master/jquery.hook.js
基于此代码为任意函数创建钩子,您可以使用在调用原始函数之前执行所需操作的方法覆盖$ .fn.css。