這裏的HTML片段
<select multiple>
<option value="1">Option 1</option>
<option value="2" selected>Option 2</option>
<option value="3" selected>Option 3</option>
</select>
這裏的腳本
$('select option').each(function(index, elem) {
if (elem.prop('selected')) {
// Find a checkbox somewhere in the page that correspond with the option
// and then check it.
}
});
然而,這引發elem.prop is not a function
。
即使是一個簡單的console.log(elem.prop('selected'))
不起作用。
我該怎麼辦?
不能單純使用'$( '選項:選擇')'? –
@Baldráni選擇了2個選項 – guradio
@guradio但在選擇上沒有'multiple'屬性。 OP - 你想讓多個選擇? –