0
當我在'選擇'中選擇項目時是否可以隱藏選項?當用戶點擊'op2'項目,但沒有關閉選項列表時,我需要附加更多選項以'選擇'。HTML:防止隱藏選項
<select>
<option>op1</option>
<option>op2</option>
</select>
當我在'選擇'中選擇項目時是否可以隱藏選項?當用戶點擊'op2'項目,但沒有關閉選項列表時,我需要附加更多選項以'選擇'。HTML:防止隱藏選項
<select>
<option>op1</option>
<option>op2</option>
</select>
<select multiple>
可能是你想要的。
這是一個HTML選項:size="x"
<select id="test" size="5">
<option>op1</option>
<option>op2</option>
<option>op3</option>
<option>op4</option>
<option>op5</option>
<option>op6</option>
</select>
然後,您可以設置使用jQuery的說大小:
$("select#test").attr("size",$("select#test > option").length);
我們需要看到你的代碼+ HTML。 – mattsven 2011-03-25 13:16:11