编程语言
首页 > 编程语言> > javascript-如何使“选定选项”与当前“选定选项”文本的宽度相同?

javascript-如何使“选定选项”与当前“选定选项”文本的宽度相同?

作者:互联网

我试图使选择选项具有当前选定选项的宽度.

我的代码是“选择选项”下拉列表的标准HTML

<select name="search_options">
  <option value="all">All</option>
  <option value="entertainment">Entertainment</option>
  <option value="newsandpolitics">News &amp; Politics</option>
  <option value="sports">Sports</option>
  <option value="lifestyle">Lifestyle</option>
  <option value="health">Health</option>
  <option value="scienceandtech">Science &amp; Tech</option>
</select>

我一直在尝试仅使用CSS或Javascript,而没有JQuery,但是我无法弄清楚.

我已经找到了一些使用JQuery的小提琴,但是没有CSS / Javascript的小提琴.

http://jsfiddle.net/5AANG/4/

http://jsfiddle.net/qqcc5/

是否有任何方法可以使用CSS或纯Javascript与上述2个小提琴相同?

任何指向正确方向的指针都将是很好的.

解决方法:

根据您的第二个链接,您可以这样操作:

var selectId = document.getElementById("yourSelect");

selectId.onchange=function(){
   var selectedValue = selectId.options[selectId.selectedIndex].value; 
   var selectedText = selectId.options[selectId.selectedIndex].text;

   selectId.style.width = 20 + (selectedText.length * 8) + "px";
}

测试:
http://jsfiddle.net/ndquxquu/

标签:html,javascript,css,option,html-select
来源: https://codeday.me/bug/20191011/1892416.html