我有下拉列表,如
<select id="ddlProjects">
<option value="315">resproject</option>
<option value="320" style-"display:inline">newheavn</option>
<option value="395" style="display:inline">cealon sales</option>
<option value="395" style="display:inline">cealon sales</option>
</select>
现在,我想要计算所有&#34;显示:inline&#34;在改变时,我怎么能得到它。
答案 0 :(得分:1)
答案 1 :(得分:0)
尝试在此上下文中使用 .filter()
,
$('#ddlProjects').change(function(){
var count = $(this).children().filter(function(){
return $(this).css('display') === "inline"
}).length;
console.log(count);
})
在这种情况下尝试使用attribute contains selector
,因为option元素的默认显示属性是内联的。
$('#ddlProjects').change(function(){
var count = $('option[style*="display:inline"]',this).length;
console.log(count);
});
答案 2 :(得分:0)
$('#ddlProjects option').filter(function() {
return $(this).css('display') === 'inline';
}).length;
答案 3 :(得分:0)
在jquery中使用属性选择器来获取下拉列表中选项的长度
$('#ddlProjects').change(function(){
var len = $(this).find('option[style="display:inline"]').length
console.log(len)
});