我正在为我的选择器使用插件。它被称为选择。我正在尝试为以下任何内容添加一个侦听器,但我觉得该插件正在阻止任何事情发生。理想情况下,我想添加一个事件,以便每次有人将“标签”添加到多选组时,都会调用一个方法。然而,事实证明这比它应该的要困难得多。到目前为止,我已经尝试了以下方法:
//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"); });
有人知道我可以在这里尝试什么吗?