即時嘗試爲從查詢結果生成的coulpe表做分頁。正如在試圖使用引導程序插件鏈接:http://www.bootply.com/lxa0FF9yhwBootstrap 3表分頁錯誤
當我運行頁面時,我在控制檯選項卡中出現此錯誤:未捕獲TypeError:children.size不是一個函數,重定向我在這部分該片段
var numItems = children.size();
我是一個jQuery總共初學者,不知道如何解決這個問題。 任何幫助非常感謝,非常感謝! 表中的問題:
<h2 class="text-center">Reservations For Today</h2>
<hr>
<table class="table table-hover" id="myTable">
<thead>
<th>Reservation ID</th>
<th>User ID</th>
<th>Table #1</th>
<th>Table #2</th>
<th>Persons</th>
<th>Reservation Made on</th>
<th>Reserved by</th>
<th>Reserved via</th>
<th>Reserved for</th>
<th>Arrival</th>
<th>Departure</th>
<th>Reservation Status</th>
<th>Attendance</th>
</thead>
<tbody id="myTableBody">
<?php
$sql4 = "SELECT * FROM reservations WHERE reserve_date = '$today' ORDER BY reservation_status ASC, reserve_date ASC, reserve_time_start ASC";
$result4 = mysqli_query($conn, $sql4);
while($row = mysqli_fetch_assoc($result4)){
echo '<tr>';
foreach($row as $field) {
if($field === null){
echo '<td>' . " - " . '</td>';
}else{
echo '<td>' . htmlspecialchars($field) . '</td>';
}
}
echo '</tr>';
}
?>
</tbody>
</table>
<div class="col-md-12 text-center">
<ul class="pagination pagination-lg pager" id="myPager"></ul>
</div>
<button type="button" class="prev">Previous</button>
<button type="button" class="next">Next</button>
<button id="myBtn">Edit Attendance</button>
提醒一下:https://stackoverflow.com/help/someone-answers –
upvoted和接受的答案,非常感謝! –