本文介绍了将颜色调色板添加到文本框中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用javascript将调色板添加到texbox中?
i尝试过使用下面的代码,
< script type = text / javascript src = js / colorpicker.js > < / script >
$(document).ready(function(){
$(' # colorpickerField1')。ColorPicker({
onSubmit:function(hsb,hex,rgb,el){
$(el).val(hex);
$(el) .ColorPickerHi德();
},
onBeforeShow:function(){
$( this )。ColorPickerSetColor( this 。 value );
}
})
.bind(' keyup', function(){
$( this )。ColorPickerSetColor( this 。 value );
});
});
但是在colorpicker.js中收到错误''SpawColorPicker''是未定义的。
如何解决这个问题?
解决方案
Hi,
How to add a color palette into a texbox using javascript?
i tried using below code,
<script type="text/javascript" src="js/colorpicker.js"></script> $(document).ready(function(){ $('#colorpickerField1').ColorPicker({ onSubmit: function(hsb, hex, rgb, el) { $(el).val(hex); $(el).ColorPickerHide(); }, onBeforeShow: function () { $(this).ColorPickerSetColor(this.value); } }) .bind('keyup', function(){ $(this).ColorPickerSetColor(this.value); }); });
but getting error ''SpawColorPicker'' in colorpicker.js is undefined.
how to solve thi?
解决方案
这篇关于将颜色调色板添加到文本框中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!