0

動的に生成されるテーブルがあります。テーブルの生成時に列を非表示にしたい:

私のスクリプトは次のとおりです。

$(document).ready(function() {
    $(document).on('load',function() {
        $("#Table1 tr").each(function(){
            $(this).find('td:gt(1)').hide();
        });
    });

ただし、上記のスクリプトは機能しません。助けてください。

4

2 に答える 2