0
$('.AttributeList option:selected[value="null"]').length
我有4個DDL。第一個選項是「選擇」。我試過這個。如果選擇te選項,那麼我需要計算有多少ddl選擇了值。
$('.AttributeList option:selected[value="null"]').length
我有4個DDL。第一個選項是「選擇」。我試過這個。如果選擇te選項,那麼我需要計算有多少ddl選擇了值。
此代碼適用於我。
$('.AttributeList').each(function() {
if ($.trim($(this).val()).length > 0)
levelcount++;
});
什麼是您的下拉列表中的「選擇」的值? – 2015-04-03 10:31:35