1

我正在为我的选择器使用插件。它被称为选择。我正在尝试为以下任何内容添加一个侦听器,但我觉得该插件正在阻止任何事情发生。理想情况下,我想添加一个事件,以便每次有人将“标签”添加到多选组时,都会调用一个方法。然而,事实证明这比它应该的要困难得多。到目前为止,我已经尝试了以下方法:

//detect when input field changes
$(".chzn-choices").find("input").change(function () { alert("lol I worked"); });

//detect when option is clicked (I dont think this works as a click event is already     binded to these and something is preventing the default
$(".chzn-drop").delegate("li", "click", function () { alert("clicked"); });

有人知道我可以在这里尝试什么吗?

4

1 回答 1

3

http://harvesthq.github.com/chosen/

表单字段更改

使用表单域时,您通常希望在选择或取消选择某个值后执行一些行为。每当用户在 Chosen 中选择一个字段时,它都会在原始表单字段上触发一个“更改”事件*。那让你做这样的事情:

$("#form_field").chosen().change( … );
于 2012-07-05T16:25:25.480 回答