append()按行滚动tbody行

时间:2014-01-30 10:39:51

标签: jquery css scroll rows

我想要一个可滚动行的表,但遗憾的是Scroll Table插件不允许与append()I did not succeed一起使用。另外,如果append(),我想在行之后滚动行。我做了一个jsfiddle演示:http://jsfiddle.net/buBAU/5/

$(function () {
    $(".Add").bind("click", Add);
    function Add() {
        var table = $(this).closest('table');
        var id_table = table.attr('id').substr(0,2);
        var t = $('#'+id_table+' >tbody >tr').length;
        if (t==8){$('#'+id_table+'bis > tfoot').css('display','none');}
        if (t<9){
            $("#"+id_table+"bis").find("tbody").append(
                "<tr>" +
                "<td><input type='button' class='Delete' value='X'/></td>" +
                "<td><input type='text' class='argument' /></td>" +
                "<td><input type='button' class='less' value='-'/></td>" +
                "<td><input type='text' class='note' value='0'/></td>" +
                "<td><input type='button' class='more' value='+'/></td>" +
                "</tr>");
        }
    };
});

使用:tbody{overflow-y: scroll; overflow-x: hidden; height: 100px;}不起作用...

有什么建议吗?感谢的

0 个答案:

没有答案