我有以下选择框:
<select multiple="" style="width:266px;" class="text_boxes" name="photography_type[]" id="photography_type">
<option selected="" value="0" label="General photographer
">General photographer
</option>
<option value="1" label="Editorial photographer/news photographer
">Editorial photographer/news photographer
</option>
<option value="2" label="Photojournalist">Photojournalist
</option>
</select>
以下不是 IE 中的工作
function removeSelection(id){
$('#photography_type :selected').each(function(i, selected){
$(selected).options[id].selected = false;
});
}
有什么解决办法吗?