怎么获得select下拉框的显示值?
引入jquery.js1 $("#selectid option:eq(1)").val(); 2 $("#selectid option").each(function(i){alert("第"+(i+1)+"个值为"+$(this).val());})