Set Width at Option of Select Box

后端 未结 4 1598
无人共我
无人共我 2020-11-30 08:08

In the picture, the width of option is larger than the select box. I want to set width of those options as same as select box & for those larger options set tex

4条回答
  •  醉话见心
    2020-11-30 08:38

    Another simple jquery solution is to rewrite the option's length manually to get the wanted size as follow :

    $('option').each(function() {
      var optionText = this.text;
      var newOption = optionText.substring(0, 36);
      $(this).text(newOption + '...');
    });
    
    

提交回复
热议问题