- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
var html = [];
for (var i = 0, len = data.length; i < len; i++) {
html[html.length] = "<option value=";
html[html.length] = data[i].monthID;
html[html.length] = ">";
html[html.length] = data[i].month;
html[html.length] = "</option>";
}
$("select.month").append(html.join(''));