Selectable in HTML <select> tag

2019-01-10 20:17发布

Is there any way to make the option group selectable?

<select>
   <optgroup value="0" label="Parent Tag">
      <option value="1">Child Tag</option>
      <option value="2">Child Tag</option>
   </optgroup>
</select>

7条回答
在下西门庆
2楼-- · 2019-01-10 20:50

@grifos's answer is not supported in WebKit Browsers and did not work when Tested in IE 11.

One suggestion might be to use an Unordered/Ordered list and to style it with CSS, then add the functionality with JavaScript/jQuery.

I have seen a nice implementation of this in the past, it can look really slick!

查看更多
登录 后发表回答