如何隐藏选择中的选定元素?
见图片:
图一
图二
我怎样才能做到这一点?
好吧,您没有发布任何标记或代码,但我会为您制作一些:
<select id="shirts">
<option>blue shirt</option>
</select>
$("#shirts").on('change', function () {
//Remove the hidden input and restore the removed value
if ($("#trueshirt").length) {
$(this).append("<option>" + $("#trueshirt").val() + "</option>");
$("#trueshirt").remove();
}
//get the selected value
var val = $(this).val();
//Remove the option as requested (simply hiding it is incompatible with
//some browsers)
$("option:selected", this).remove();
//Create hidden input to keep the value
$("<input>").val(val).attr({'type': 'hidden', 'name': 'shirt', id: 'trueshirt'})
.insertAfter(this);
});