将jPicker字段设置为空值

时间:2014-06-17 14:11:56

标签: jquery jpicker

我使用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种方法中似乎没有一种行为正常。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

这对我有用:)

$.jPicker.List[0].color.active.val('v', null); 

以下是示例:http://jsfiddle.net/3Up7n/