1

如何隐藏选择中的选定元素?

见图片:

图一 图一

图二 图二

我怎样才能做到这一点?

4

3 回答 3

4

你不需要javascript,但只需要一行css:

option:checked { display: none; }

演示:

http://jsfiddle.net/kJckW/2/

于 2012-12-19T20:25:08.040 回答
1

这一切都取决于你的加价。

$("#select_id option[value='foo']").remove();

这是jsfiddle

于 2012-12-19T20:16:51.073 回答
1

好吧,您没有发布任何标记或代码,但我会为您制作一些:

<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);
});
于 2012-12-19T20:19:39.530 回答