3

我正在使用这个颜色选择器http://www.eyecon.ro/colorpicker并试图捕获十六进制值,以便我可以在服务器端使用它来存储选定的颜色。

更改默认颜色后,我无法获得所选颜色。

这是我的代码:

 var currentHex = '#0000ff';
            alert(currentHex);
            $('#colorSelector').ColorPicker({
                color: currentHex,
                onShow: function (colpkr) {
                    $(colpkr).fadeIn(500);
                    return false;
                },
                onHide: function (colpkr) {
                    $(colpkr).fadeOut(500);
                    return false;
                },
                onChange: function (hsb, hex, rgb) {
                    // every time a new colour is selected, this function is called
                    currentHex = hex;
                    $('#mycolor').val = currentHex;
                }
            });

html:

<div id="colorSelector"><div style="background-color: rgb(62, 62, 189); "></div></div>
<input type="text" maxlength="6" size="6" id="mycolor" value="00ff00">

这是我的演示

4

3 回答 3

5
$('#mycolor').val = currentHex; //wrong syntax

应该

$('#mycolor').val(currentHex);

更新的演示

于 2012-04-22T23:38:43.173 回答
1
$(document).ready(function() {
    var currentHex = '#0000ff';
    $('#colorSelector').ColorPicker({
        color: currentHex,
        onShow: function(colpkr) {
            $(colpkr).fadeIn(500);
            return false;
        },
        onHide: function(colpkr) {
            $(colpkr).fadeOut(500);
            return false;
        },
        onChange: function(hsb, hex, rgb) {
            $('#colorSelector div').css('backgroundColor', '#' + hex);
            alert(hex);
            $('#mycolor').val(currentHex);
        }
    });

});​
于 2012-04-22T23:40:01.913 回答
1

这是你的目的吗?

JSFiddle

于 2012-04-22T23:41:25.907 回答