removing all options of select box except 1st option

前端 未结 8 2160
情书的邮戳
情书的邮戳 2020-12-29 01:20

I\'m trying to empty select options when:

id \"mClick\" is selected, id\'s \"sClick\", \"cClick\" and \"srClick\" will be emptied.

id \"sClick\" is selected,

8条回答
  •  渐次进展
    2020-12-29 02:12

    Try this

    $('#lForm select').change(function(){
       var $selects = $('#lForm select');
       var idx = $selects.index(this);
    
       // Use `val` function to clear the selected values or Use `remove` function to remove the element.
       $selects.filter(':gt(' + idx +')').val('');
    
    });
    

提交回复
热议问题