答案 0 :(得分:3)
使用css
和jQuery
:
select, option.selected {
width:100px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
jQuery
$('select').on('change',function(){
$(this).find('option').removeClass('selected');
$(this).find('option:selected').addClass('selected');
});
答案 1 :(得分:1)
我相信你所寻找的是:
option {
width: 200px; // Adjustable
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
这将自动强制选择选项为指定的宽度,并将任何“溢出”文本转换为保留在边界内的省略号:)
希望这有帮助!
答案 2 :(得分:0)