最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to change width of the select element as per the selected option? - Stack Overflow

programmeradmin2浏览0评论

I have large list of the drop-down menu. Some of the option have very large text. and I want to make the width of the selected element as per the selected option.

If the selected option is "Selected" then width should be like 120px or something. When user select "Very Large Selected option" then widht of the <select> tag should be increase.

Here is the sample code, what I am trying to do.

I have large list of the drop-down menu. Some of the option have very large text. and I want to make the width of the selected element as per the selected option.

If the selected option is "Selected" then width should be like 120px or something. When user select "Very Large Selected option" then widht of the <select> tag should be increase.

Here is the sample code, what I am trying to do. http://jsbin./axaka4/edit

Share Improve this question edited Jun 17, 2011 at 12:19 roryf 30.2k17 gold badges83 silver badges105 bronze badges asked Jun 17, 2011 at 12:08 Wasim ShaikhWasim Shaikh 7,04018 gold badges62 silver badges88 bronze badges 1
  • See also stackoverflow./questions/20091481/… – rogerdpack Commented Apr 21, 2017 at 19:17
Add a ment  | 

2 Answers 2

Reset to default 13

Using some cheating you could clone content of the selected option, measure it's width and resize select to this width like this:

$('select').change(function(){
    var $opt = $(this).find("option:selected");
    var $span = $('<span>').addClass('tester').text($opt.text());

    $span.css({
        'font-family' : $opt.css('font-family'),
        'font-style' : $opt.css('font-style'),
        'font-weight' : $opt.css('font-weight'),
        'font-size' : $opt.css('font-size')
    });

    $('body').append($span);
    // The 30px is for select open icon - it may vary a little per-browser
    $(this).width($span.width()+30);
    $span.remove();
});

$('select').change();

A working fiddle here

i have not tested it but i think this should work.i am assuming you have multiselect dropdown

 $("selectId").change(function () { 
         $("selectid option:selected").each(function () { 
                str = $(this).width(); 
                $('#selectId').width(str); 
          }); 
});
发布评论

评论列表(0)

  1. 暂无评论