私はこのセレクトボックスを手に入れました
<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>
オプションを選択すると、出力という名前のスパンに出力が表示されます
<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でデモを見ることができます(カテゴリを選択してください)