我有这个选择框
<select id="box" name="box">
<option value=""></option>
<option value="1">aa1, aa2, aa3, aa4, aa5</option>
<option value="2">bb2, bb4, bb6, bb8</option>
<option value="3">cc1, cc5, cc6, cc8, cc9</option>
<option value="4">dda, ddd, ddg, ddk, ddz</option>
</select>
当我选择一个选项时,我会在一个名为 output 的范围内显示输出
<span class="output"></span>
使用这个 jQuery 代码
// This selector is called every time a select box is changed
$("#box").change(function(){
// varible to hold string
var str = "";
$("#box option:selected").each(function(){
// when the select box is changed, we add the value text to the varible
str = $(this).text();
});
// then display it in the following class
$(".output").text(str);
}).change();
现在我想从每个选定的选项中拆分名称并为输出类创建一个按钮
你可以在JSFIDDLE上看到一个演示(选择一个类别)