Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
136 views
in Technique[技术] by (71.8m points)

javascript - 使用jQuery垂直打印日历(print calendar vertically using jquery)

I was trying to print calendar vertically like this(我试图像这样垂直打印日历)

1 8 15 22 29 2 9 16 23 30 3 10 17 24 31 4 11 18 25 5 12 19 26 6 13 20 27 7 14 21 28 I tried below code(我尝试下面的代码) var x = 1; var $tbodyTr = $('<tr>').appendTo($tbody); for(var i = 1; i <= 31; i++){ if(x == 7) { x = 1; $tbodyTr = $('<tr>').appendTo($tbody); } $tbodyTd = $('<td>',{html: i}).appendTo($tbodyTr); x++; } But it prints horizontally.(但是它水平打印。) var $table = $('<table>',{'class': 'table-calendar table table-hover text-center table-calendar'}); var $tbody = $('<tbody>').appendTo($table); var x = 1; var $tbodyTr = $('<tr>').appendTo($tbody); for(var i = 1; i <= 31; i++){ if(x == 7) { x = 1; $tbodyTr = $('<tr>').appendTo($tbody); } $tbodyTd = $('<td>',{html: i}).appendTo($tbodyTr); x++; } $('.table-responsive').html($table); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div class="table-responsive"> </div> Looking for help, want vertical output.(寻求帮助,想要垂直输出。)   ask by Nirav Joshi translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

To solve this you can build the column values using their ordinal positions.(为了解决这个问题,您可以使用列的顺序位置来构建列值。)

As this is for a calendar you can assert that a grid of 6*6 cells (or 7*5 in your example) is enough to fit all 31 days in, no matter where the starting position is.(因为这是用于日历的,所以您可以断言,无论起始位置在哪里,一个6 * 6单元格(在您的示例中为7 * 5)的网格足以容纳所有31天。) As such you can use two loops and calculate the day number based on the current row/col, like this(这样,您可以使用两个循环并根据当前行/列计算天数,如下所示) var $table = $('<table>', { 'class': 'table-calendar table table-hover text-center table-calendar' }).appendTo('.table-responsive'); var $tbody = $('<tbody>').appendTo($table); var rowCount = 7, colCount = 5; var html = ''; for (var row = 0; row < rowCount; row++) { html += '<tr>'; for (var col = 0; col < colCount; col++) { var day = (row + 1) + (col * rowCount); if (day < 32) html += `<td>${day}</td>`; } html += '</tr>'; } $tbody.append(html); td { padding: 5px; } <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div class="table-responsive"></div> This logic can then be easily tweaked to move the starting position based on day of week and also the number of days in the given month.(然后,可以根据星期几以及给定月份的天数轻松调整此逻辑以移动起始位置。)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...