Repopulating dates on select boxes

后端 未结 2 396
孤街浪徒
孤街浪徒 2021-01-12 21:58

I\'ve created a date_select in Rails (which is 3 select boxes: one for year, one for month, and one for day).

To have 31st February on them is quite confusing. What

2条回答
  •  旧时难觅i
    2021-01-12 22:18

    /* automatically update days based on month */
    
    for (var i = 2014; i < 2019; i++) {
        $('

    Refer fiddle link: http://jsfiddle.net/u3fr1mt0/

提交回复
热议问题