开发者

How to change the width of select box

开发者 https://www.devze.com 2023-02-24 12:36 出处:网络
How to change the width of select box in jquery or i开发者_运维问答n html?In HTML <select name=\"foo\" style=\"width:30px;\">

How to change the width of select box in jquery or i开发者_运维问答n html?


In HTML

<select name="foo" style="width:30px;">
    <option>one</option>
    <option>two</option>
    <option>three</option>
</select> 

In Jquery

$('#Id').width(30);


use css().

$('select').css({'width': 200});


One option is to use width

$('#selectId').width(175);
0

精彩评论

暂无评论...
验证码 换一张
取 消