SELECT 根据文字来选中
$(\'#id option:contains(“第一项”)\').attr("selected", true);
不过如果选项中不仅有"第一项",还有"这也是第一项"···
那就不会保证会选“第一项”····
下面的方法吧······循环·······
没有找到更好的·
谁有更好的、欢迎留言···
//循环方法
<script>
$("#se option").each(function (){
if($(this).text()=='2222'){
$(this).attr('selected',true);
}
});
</script>