为什么选择添加了哪个选项动态显示标题中的所有选项?

时间:2015-08-21 07:41:32

标签: jquery html select

我在optionselect

中添加了jQuery
$('.select_month').append('<option value=month_'+i+'>'+i+</option>');

这是我的HTML

<select class="select_month" name="month"> </select>

但执行时它无法正常工作。 它显示如下:

enter image description here

点击此内容..

enter image description here

请帮帮我。

1 个答案:

答案 0 :(得分:0)

你在做这样的事吗?

HTML:

<select class="select_month" name="month"> </select>

JavaScript的:

$( document ).ready(function() {
    for (i=1; i<13; i++)
    {
        $('.select_month').append('<option value=month_'+i+'>'+i+'</option>');
    }
});