我知道有一个名为 .hasClass(); 的插件;
我有以下
$('#page_background, #header_background').ColorPicker({...
我将如何检查是否单击了 page_background 而不是 header_background?
这就是我现在拥有的,它不会工作。
$('#page_background, #header_background').ColorPicker({
onSubmit: function(hsb, hex, rgb, el) {
$(el).val(hex);
$(el).ColorPickerHide();
var id = this.id;
if(id == 'page_background')
$('body').css("background-color","#"+hex);
},
onBeforeShow: function () {
$(this).ColorPickerSetColor(this.value);
}
})
.bind('keyup', function(){
$(this).ColorPickerSetColor(this.value);
});