我在进行多重选择时遇到问题,我想跳过不显示属性的向上或向下按钮选项值。
这是我用于递增或递减选项值的代码:
$('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);
}
});
我的多重表情像: