1234567891011class="wraper"1style="height: 52px; line-height: 52px;"2style="height: 40px; line-height: 40px;"3style="height: 100px; line-height: 100px;"45id="up" class="up" href="javascript:;"上移id="down" class="down" href="javascript:;"下移
1234567891011121314151617181920212223242526272829303132333435363738* {padding:0;margin:0;}.wraper {width:500px;border:1px #ddd solid;margin:100px auto;position:relative;}ul {list-style:none;}ul li {height:32px;line-height:32px;background-color:red;margin-bottom:2px;position:relative;color:#fff;}ul li.slt {background-color:green;color:#000;}.up {position:absolute;top:10px;right:-35px;display:none;}.down {position:absolute;top:32px;right:-35px;display:none;}
12345678910111213141516171819202122232425262728293031323334353637383940414243$(document)//选择要移动的元素.on('click', 'ul li', function() {var _this = $(this);_this.addClass('slt').siblings().removeClass('slt');upDownBtnShow(_this);})//点击别处重置.on('click', function(e) {if ($(e.target).closest('li').length == 0 && $(e.target).closest('#up').length == 0 && $(e.target).closest('#down').length == 0) {$('#down,#up').hide();$('ul li').removeClass('slt');}})//向上移动.on("click", "#up", function() {moveTag('prev');})//向下移动.on("click", "#down", function() {moveTag('next');});var isAnimate = false; //默认没有移动function moveTag(type) {var seed = 300;var $c = $('li.slt');if (type === 'next') {var $nextEle = $c.next();if ($nextEle.length == 0) {alert('不能再往下移动了');return false;} else {if (!isAnimate) {isAnimate = true;$nextEle.css('position', 'relative').animate({top: '-' + $c.outerHeight(true) + 'px'}, seed);
选中元素,判断元素位置显示按钮,点击按钮移动元素位置