2019年1月9日 星期三

JQuery select 操作

移除特定option
$('#Id option[value=6]').remove();

移除select內的所有option
$('#select option').remove();

select加option
$("#selectList").append(new Option("option text", "value"));

select readonly
$("#select").attr('disabled', true);

0 意見:

張貼留言