日期:2014-05-16 浏览次数:20559 次
//向下移动
function movedown(){
$.each($("table input:checked"),function(){
var onthis = $(this).parent().parent();
getdown = onthis.next();
$(getdown).after(onthis);
});
}
function movedown(){
    var checkedArray = $("table input:checked");
    for (var i = checkedArray.length - 1; i >= 0; i--) {
        var onthis = $(checkedArray[i]).parent().parent();
        getdown = onthis.next();
        $(getdown).after(onthis);
    }
};