onClick后清除下拉值?

时间:2016-05-02 16:25:50

标签: javascript jquery html html-select

我的下拉时间值。如果我点击我的下拉菜单,我想重置我的下拉菜单。每次点击我的下拉列表时,我当前的代码都会给我一组新的值。我也尝试使用.empty()但是没有用。这是我的HTML:

<td>
    <select name="stime" id="stime">
       <option value="0">--Select start time--</option>
    </select>
</td>

这是我的JQuery:

    $j('#stime').on('click', function() {
        //Populate start time dropdown with values 
        for(var i=700; i<= 1700; i+=15){
            var mins = i % 100;
            var hours = parseInt(i/100);

            if (mins > 45) {
                mins = 0;
                hours += 1;
                i = hours * 100;
            }

            var AmPm = " AM";
            //set hours 12 to PM
            if(hours == 12){
               AmPm = " PM";
            }

        //format all hours greater than to PM
        if (hours > 12) {
            hours = hours - 12;
            AmPm = " PM";
        }

        $j('#stime').children().not(":first").empty();

        //populate stime with values
        $j('#stime').append('<option value="'+('0' + (hours)).slice(-2)+':'+('0' + mins).slice(-2)+AmPm+'">'+('0' + (hours)).slice(-2)+':'+('0' + mins).slice(-2)+AmPm+' </option>');
    }    
 });

我当前的代码给了我一个空白的下拉列表,我可以看到每次点击下拉框后滚动条变小,告诉我从未删除过值。如果有人可以帮助解决这个问题,请告诉我。谢谢。

1 个答案:

答案 0 :(得分:1)

在声明函数

之后添加此权利

$j('#stime').on('click', function() { $j("#stime option:gt(0)").remove();

...

$j('#stime').children().not(":first").empty();

并删除此行

{{1}}

上面的行在for循环中,它使所有项都为空字符串。