我在哪里可以从这个 jquery 插件中获取十六进制颜色的值?
我使用这个 jquery 插件,它是一个颜色选择器,但我想知道当用户选择颜色时,颜色十六进制值存储在哪里,这样我可以处理它并将其放入数据库中。谢谢,
这是 jquery 插件的链接: http://www.eyecon.ro/colorpicker/
HTML
<div id='colourPicker'></div>
JS
$('#colourPicker').ColorPicker({
onChange: function(hsb, hex, rgb){
$("#full").css("background-color", '#' + hex);
}
});
im using this jquery plugin which is a colorpicker, but i was wondering when the user chooses the color, where is the color hex value stored, so i can process it and put it in the database. thanks
this is the link for the jquery plugin:
http://www.eyecon.ro/colorpicker/
HTML
<div id='colourPicker'></div>
JS
$('#colourPicker').ColorPicker({
onChange: function(hsb, hex, rgb){
$("#full").css("background-color", '#' + hex);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它存储在 onchange 事件中包含的
hex
参数中。 您已经在使用。设置隐藏输入值的示例
HTML
JS/jQuery
It is stored in the
hex
argument included in the onchange event. The one you are already using.Example of setting a hidden input value
HTML
JS/jQuery