jquery實(shí)現(xiàn)元素上下移動(dòng)代碼
$('.ctl-prev').click(function(){
$('#ctl-ul li:last-child').clone(true).prependTo('#ctl-ul');
//clone(true)參數(shù)true是表示把元素所綁定的事件一起克隆,在副本還能夠監(jiān)聽到事件并且觸發(fā)動(dòng)作
$('#ctl-ul li:last-child').remove();
return false;
});
$('.ctl-next').click(function(){
$('#ctl-ul li:first-child').clone(true).appendTo('#ctl-ul');
$('#ctl-ul li:first-child').remove();
return false;
});