jpicker中的颜色更改事件处理

时间:2012-04-26 14:02:37

标签: jquery html jpicker

我有几个jpickers。例如:我想改变身体背景颜色,同时改变jpicker中的颜色。如何处理jpicker中的颜色变化事件?

JS:

$('#colorSelector').jPicker(
                {
                    window:{expandable:true}
                });

HTML

<span id="colorSelector"></span>

有什么想法吗?

感谢。

1 个答案:

答案 0 :(得分:1)

像这样的东西

$('#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
        }
);

看那里:http://www.digitalmagicpro.com/jPicker/