小箩莉末发育娇小性色xxxx,精品无码久久久久久久久水蜜桃,精品国产污污免费网站入口,中文在线а天堂中文在线新版

中山php|最優網絡中山做網站 中山php建站

最優良人

2011/08/25 at 14:33

JQ實現元素上下移動

jquery實現元素上下移動代碼
$('.ctl-prev').click(function(){

$('#ctl-ul li:last-child').clone(true).prependTo('#ctl-ul');

//clone(true)參數true是表示把元素所綁定的事件一起克隆,在副本還能夠監聽到事件并且觸發動作
$('#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;
});

標簽:
-