我使用chosen倍数来从列表中选择值。
我在点击所选值时尝试实施自定义操作,并且需要阻止下拉列表显示。 (只有在点击div.search-choice
)时才能阻止
$(document).on('click', '.search-choice', function(event){
event.preventDefault(); // not working
event.stopPropagation(); // not working
action();
});
小提琴:http://jsfiddle.net/alexix/RA8ej/150/
无法找到任何解决方案,但我知道它可能,因为单击标签的x
完全符合我的需要(使用不同的操作)。我该如何停止下拉?