select option选中默认selected

 
   
$(document).ready(function(){
        $("#selectId option").each(function(){ //遍历全部option
            var text = $(this).text(); //获取option的text
//            var value = $(this).val(); //获取option的value
            if(text=="${dan.dengjiqiangdu}") {
                $('#selectId').attr('value',text);
            }
})
})

 

转载于:https://www.cnblogs.com/duneF/p/8270472.html

你可能感兴趣的:(select option选中默认selected)