我有几个 jpicker。例如:我想更改正文背景颜色,同时更改 jpicker 中的颜色。如何处理jpicker中的颜色变化事件?
js:
$('#colorSelector').jPicker(
{
window:{expandable:true}
});
html
<span id="colorSelector"></span>
任何的想法?
谢谢。
像这样的东西
$('#Callbacks').jPicker(
{},
function(color, context)
{
var all = color.val('all');
alert('Color chosen - hex: ' + (all && '#' + all.hex || 'none') + ' - alpha: ' + (all && all.a + '%' || 'none'));
$('#Commit').css(
{
backgroundColor: all && '#' + all.hex || 'transparent'
}); // prevent IE from throwing exception if hex is empty
}
);