多个选择选项值向上或向下,但跳过不显示任何属性

时间:2018-08-30 11:32:15

标签: drop-down-menu attributes option skip

我在进行多重选择时遇到问题,我想跳过不显示属性的向上或向下按钮选项值。

这是我用于递增或递减选项值的代码:

$('button[type="button"]').click(function(){
    var $op = $('#left-box option:selected, #right-box option:selected'), 
    $this = $(this);
    if($op.length){
        console.log($op.first().prev()[0].attributes.length);
        ($this.attr('id') == 'put-up') ? $op.first().prev().before($op) : $op.last().next().after($op);
    }
});

我的多重表情像:

enter image description here

0 个答案:

没有答案