更新

我只是尝试称呼具有讽刺意味的颜色选择器,所有脚本都包含在HTML中。以下代码是一个使用颜色选择器作为占位符的表单。我怎么称呼我的farbastastic拾色器?我正在使用以下随附的javascript代码。

enter code here <form action="controller.php" method="post" class="popupform" id="form_changecolor">

<div id="colorpicker"></div>

<table>
  <tr><th>huidige:</th><th>nieuwe:</th></tr>
  <tr><td><input type="text" name="oldcolor" disabled="disabled" id="oldcolor" />
  </td><td><input type="text" name="newcolor" id="newcolor" /></td></tr>
</table>
<div class="buttonrow">
  <input type="hidden" name="page" value="{$PAGE}" />
  <input type="hidden" name="module" value="changecolor" />
  <input type="hidden" name="id" id="parameter_key" value="" />
  <input type="submit" class="btnOk" value="Aanpassen" />
  <input type="button" class="btnCancel" value="Annuleren" />
</div>




enter code here // color picker.
$("#content").dblclick(function() {
    alert('color picker');
    $("#colorpicker").farbtastic("#color");
});

最佳答案

请参见Basic Usage on the plugin's site

关于php - 用javascript调用Farbtastic颜色选择器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5444555/

10-11 21:40