3 回答
TA贡献1820条经验 获得超10个赞
$(document).ready(function(){
var objMonthMapping = {
1 : 'January',
2 : 'February',
3 : 'March',
4 : 'April',
5 : 'May',
6 : 'June',
7 : 'July',
8 : 'August',
9 : 'September',
10 : 'October',
11 : 'November',
12 : 'December'
};
var intCurMonth = new Date().getMonth() + 1;
var intPrevMonth = (intCurMonth - 1) ? (intCurMonth - 1) : 12;
$('<option>').val(intPrevMonth).text(objMonthMapping[intPrevMonth]).appendTo('#monthsDropdown');
$('<option>').val(intCurMonth).text(objMonthMapping[intCurMonth]).appendTo('#monthsDropdown');
$('#monthsDropdown').val(intCurMonth);
});
这是 HTML:
<div>
<select id="monthsDropdown">
</select>
</div>
这些代码行将在下拉列表中提供当前月份和上个月的选项。
添加回答
举报