0

jquery変数に保存したテーブルとテーブル内のデータがありますが、テーブルにページネーションを適用したため、テーブルの現在の値のみが変数に保存され、テーブルの次のページエントリはそうではありません。コードは以下のように、テーブル内のすべての値を jquery 変数に格納する方法を教えてください。誰でも助けることができます..?

$("#button3").click(function(){

    arr = new Array();
    $("td").each(function () {
        t = $(this).text();
        arr.push(t);
    });

    var pdf = new jsPDF();
    pdf.setFontSize(3);
    pdf.text(35, 25,arr);
    pdf.save('message.pdf');
});
4

1 に答える 1

0

一時的なカウンター変数を使用して、制限がそれまでであればコードをプッシュできます。

$("#button3").click(function(){
    var limit = 10;
    var count = 0;
    arr = new Array();
    $("td").each(function () {
        t = $(this).text();
        if(count <= limit){
        arr.push(t);
        count ++;
       }
    });

    var pdf = new jsPDF();
    pdf.setFontSize(3);
    pdf.text(35, 25,arr);
    pdf.save('message.pdf');
});
于 2013-07-05T11:11:32.197 に答える