在多选择框中嵌入单选按钮

Embed radio buttons in multi select box

本文关键字:单选按钮 选择      更新时间:2023-09-26

是否有一种方法(使用html/jquery)我可以在多选择列表的选项中嵌入单选按钮?

交货: <select multiple>
<option>USA
<input type="radio" name="subregion" value="dma">DMA
<input type="radio" name="subregion" value="states">States
</option>
<option>Canada
<input type="radio" name="subregion" value="dma">DMA
<input type="radio" name="subregion" value="provinces">Provinces
</option>
...
...
...
...
</select>

不能在SELECT中嵌套其他HTML元素。如果这是您真正需要的功能,请考虑基于div的下拉替换。