我正在使用 jQuery ColorPicker 小部件 - 特别是在执行 ColorPickerSetColor 函数(内部只是“setColor”)。代码摘录:
setColor: function(col) {
if (typeof col == 'string') {
col = HexToHSB(col);
} else if (col.r != undefined && col.g != undefined && col.b != undefined) {
col = RGBToHSB(col);
} else if (col.h != undefined && col.s != undefined && col.b != undefined) {
col = fixHSB(col);
} else {
return this;
}
return this.each(function(){
if ($(this).data('colorpickerId')) {
var cal = $('#' + $(this).data('colorpickerId'));
cal.data('colorpicker').color = col;
cal.data('colorpicker').origColor = col;
fillRGBFields(col, cal.get(0));
fillHSBFields(col, cal.get(0));
fillHexFields(col, cal.get(0));
setHue(col, cal.get(0));
setSelector(col, cal.get(0));
setCurrentColor(col, cal.get(0));
setNewColor(col, cal.get(0));
}
});
}
小部件中似乎存在错误。在 each() 调用内部检查时,'col' 参数是未定义的。我已经阅读了文档和其他示例,我能找到的所有内容都表明,当 each() 调用执行函数时,'col' 应该仍然在范围内,但它似乎不是......
帮助?
谢谢!