我有一个select元素,它通过SonataAdminBundle由Select2装饰。

我正在尝试收听更改事件。我的选择标签的ID为“categorySelector”。

这不起作用:

var test = $('#categorySelector');

$(test).change(function() {

    var theSelection = $(test).select2("val");
    //$('#selectedID').text(theID);
   console.log(theSelection);
});

我该怎么做呢?

最佳答案

我认为这应该对您有用...

$('#categorySelector').on("change", function(e) {
    var theSelection = e.val();
    console.log(theSelection);
});

关于javascript - 如何绑定(bind)到select2更改事件并获取所选值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21906307/

10-12 05:27