我使用jPicker作为表单中的颜色选择器。 我所要做的就是清除它的值,然后将其窗口/图标设置为“无颜色选择”状态。
我尝试了以下内容:
$(':input[name="color"]').val(''); //Access its value directly. (Does not affect jPicker)
2:
$.jPicker.List[0].color.active.val('hex', '', this); //Set color to black and input value to 000000, instead of empty string
3:
$.jPicker.List[0].color.active.val(null, '', this); //Does nothing
3种方法中似乎没有一种行为正常。 提前谢谢。
答案 0 :(得分:1)