在jQuery选择的插件中获得取消选择选项的价值

时间:2014-05-21 13:55:00

标签: php jquery jquery-chosen

在文字到达时,我没有获得取消选择选项的价值

$('#f_profession').chosen().change(function (evt, params) {
    alert($(this).text())
    if (params.deselected) {
        alert($(this).val())
    }
});

1 个答案:

答案 0 :(得分:1)

$(document).ready(function(){
    $('#f_profession').chosen().change(function () {
        $(this).find('option:not(:selected)').each(function(){
        alert('Text : '+$(this).text());
        alert('Value : '+$(this).val());
         });
    });
});