jQuery怎么根据某个特定的值动态让select下的option选中

HTML:


jQuery怎么根据某个特定的值动态让select下的option选中_第1张图片

首先获取当前月份,并根据当前月让select下对应的option动态选中

$(function(){    var date=new Date;    var yue = date.getMonth()+1;    $("#MONAT").find("option[value = '"+yue+"']").attr("selected","selected");})


这样在文件加载完成时就会默认选中当前月了。

你可能感兴趣的:(jQuery怎么根据某个特定的值动态让select下的option选中)