首页 > 代码库 > jQuery select下拉框设置选中项

jQuery select下拉框设置选中项

$("#selectId option:last").prop("selected", ‘selected‘);$("#selectId option").eq(0).attr("selected", true);

  

jQuery select下拉框设置选中项