转载的,需要在明确的位置标明转载出处:
http://blog.csdn.net/happyflyingave/article/details/29586767
惯例:
我是温浩然:
先说需求:
后台传过,年,月,周,三个属性。在前台页面为选择框形式。
想用jquery控制,根据后台传值判断选中相等。
代码如下:
$('#stage-main-content').on('click','[btntype=editStage]',function(){ var el=$(this); $('#editStageModal .year').children("option").each(function(){ var temp_value = $(this).val(); if(temp_value == el.attr('data-year')){ $(this).attr("selected","selected"); } });,这是第一种,
第二种更简单,只不过我没试过。
- $("select option[value='"+value+"']").attr("selected", "selected");