我正在使用此颜色选择器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">


这是我的Demo

最佳答案

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


应该

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


Updated Demo

10-04 17:38