1

私はこれに一日中費やしましたが、何かが欠けていて、それを理解できません。このシンプルなカラーピッカーを使用しています http://www.dynamicdrive.com/dynamicindex11/colorjack/index.htm

私がやろうとしているのは、背景色を更新してからフォントの色を更新し、ユーザーにライブ結果を表示させ、テキスト入力ボックスで 16 進数の色コードを自動更新させることです。以下は私のコードです。

                            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
            <html xmlns="http://www.w3.org/1999/xhtml">
            <head>
             <title>Color Picker</title>
             <link href="plugin.css" rel="stylesheet" type="text/css" />
             <script src="plugin.js" type="text/JavaScript"></script>
            </head>
            <body>
            <div id="plugin" onmousedown="HSVslide('drag','plugin',event)" style="TOP: 140px; LEFT: 430px; Z-INDEX: 20;">
             <div id="plugHEX" onmousedown="stop=0; setTimeout('stop=1',100);">F1FFCC</div><div id="plugCLOSE" onmousedown="toggle('plugin')">X</div><br>
             <div id="SV" onmousedown="HSVslide('SVslide','plugin',event)" title="Saturation + Value">
              <div id="SVslide" style="TOP: -4px; LEFT: -4px;"><br /></div>
             </div>
             <form id="H" onmousedown="HSVslide('Hslide','plugin',event)" title="Hue">
              <div id="Hslide" style="TOP: -7px; LEFT: -8px;"><br /></div>
              <div id="Hmodel"></div>
             </form>
            </div>



            <table>
              <tr>
                <td class="formlabel" align="right" valign="top">

                  <!-- color box to show background color and font color -->

                  <div id="currentcolor" style="margin-top:2px;padding:4px 10px 4px 10px;background-color:F1FFCC"><span id="showfontcolor" style="color:">Current Text Color</span></div>

                  <!-- End color box --></td>
                <td valign="top"><table>
                    <tbody>
                      <tr>
                        <td><div class="small">Background Color</div>
                          <input name="colorcode" id="colorcode" value="" maxlength="199" class="textbox" style="width:80px" type="text">
                          <a href="javascript:toggle('plugin','colorcode');">Color Picker</a></td>
                        <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
                        <td><div class="small">Text Color</div>
                          <input name="fontcolor" id="fontcolor" value="" maxlength="199" class="textbox" style="width:80px" type="text">
                          <a href="javascript:toggle('plugin','fontcolor');">Color Picker</a></td>
                      </tr>
                    </tbody>
                  </table></td>
              </tr>
            </table>


            <script type="text/javascript">

            //*** CUSTOMIZE mkcolor() function below to perform the desired action when the color picker is being dragged/ used
            //*** Parameter "v" contains the latest color being selected
            function mkColor(v){
            //** In this case, just update DIV with ID="colorbox" so its background color reflects the chosen color

            $S('currentcolor').background='#'+v;
            $('colorcode').value='#'+v;
            }

            loadSV(); updateH('F1FFCC');
            toggle('plugin');

            </script>


            </body>
            </html>

問題は、入力がリアルタイムでcolorcode更新されないことです。fontcolor

4

1 に答える 1

2

したがって、JavaScriptにはいくつかの問題があります。以下にコードを修正しました:

function mkColor(v){
                var field2update = $('#divUpdateID')[0].innerHTML;
                if (field2update=='colorcode') {
                    $('#currentcolor').background='#'+v;
                    $('#colorcode').value='#'+v;
                } else if (field2update=='fontcolor') {
                    $('#showfontcolor').color='#'+v;
                    $('#fontcolor').value='#'+v;
                }
            }

すべての jquery セレクターが壊れていました。またinnerHTML、jquery 関数ではなく dom 関数であるため、jquery オブジェクト配列ではなく dom オブジェクトで使用する必要があります。

以下は、それらを更新する方法です。コード内のどこに配置すればよいかを理解する必要があります。

$("#currentcolor").html("The value it needs to be updated with!");
$("#colorcode").value = "Same as above!";

上記は背景を更新し、以下はあなたを更新しますfontcolor

$("#fontcolor").value = "The value you want!";
$("#currentcolor").css("color", "your text color value here!"); //this line updates the color of the text in the `currentcolor` div;

編集:

これは上記のコードの書き直しであり、使用しているプラ​​グインへの変更でもあります。

プラグインに変更します。

var type_to_update = ''; //this goes in the global namespace,
...
function toggle(v, type){ //changed to accept which input should be updated
    $S(v).display=($S(v).display=='none'?'block':'none'); 
    type_to_update = type; //updating the global variable 
}

コードを次のように変更します。

function mkColor(v){
    if(type_to_update == 'colorcode' || type_to_update == ''){ //default to changing background color if one of the pickers has not been clicked on.
        $S('currentcolor').background = "#"+v;
        $('colorcode').value = '#'+v;
    }else if(type_to_update == 'fontcolor'){
        $S('currentcolor').css("color", '#'+v);
        $('fontcolor').value = '#'+v;
    }

    loadSV();
    updateH('F1FFCC');
    toggle('plugin');
}
于 2013-02-25T22:59:25.630 に答える