如何使用文本获取选择列表(未选中)的值。我使用过滤功能,但同样不起作用
var value1 = $('#ddldept option').filter(function() {
return $(this).text() === 'abc';
}).val();
value1未定义..
答案 0 :(得分:1)
如果您想要未选择的值,则
var value1 = $('#ddldept option').not(':selected').filter(function () {
return $(this).text() === 'abc';
}).val();
console.log(value1);