Jquery使用文本从select中获取值(未选中)

时间:2014-04-16 11:54:54

标签: jquery

如何使用文本获取选择列表(未选中)的值。我使用过滤功能,但同样不起作用

var value1 = $('#ddldept option').filter(function() { 
    return $(this).text() === 'abc';
}).val();    

value1未定义..

1 个答案:

答案 0 :(得分:1)

如果您想要未选择的值,则

var value1 = $('#ddldept option').not(':selected').filter(function () {
    return $(this).text() === 'abc';
}).val();

console.log(value1);

JSFiddle