我有一个很好的分页,但我需要在表格之前添加按钮,以便按“id”,“name”等排序。 所以一个用于id的按钮和一个用于名称的按钮!
我在index.php的jQuery中有这个代码,所以你可以在页面之间快速浏览..
<script type="text/javascript">
$(document).ready(function(){
function loading_show(){
$('#loading').html("<img src='images/loading.gif'/>").fadeIn('fast');
}
function loading_hide(){
$('#loading').fadeOut('fast');
}
function loadData(page){
loading_show();
$.ajax
({
type: "POST",
url: "load_data.php",
data: "page="+page,
success: function(msg)
{
$("#containers").ajaxComplete(function(event, request, settings)
{
loading_hide();
$("#containers").html(msg);
});
}
});
}
loadData(1); // For first time page load default results
$('#containers .pagination li.active').live('click',function(){
var page = $(this).attr('p');
loadData(page);
});
$('#go_btn').live('click',function(){
var page = parseInt($('.goto').val());
var no_of_pages = parseInt($('.total').attr('a'));
if(page != 0 && page <= no_of_pages){
loadData(page);
}else{
alert('Skriv ett nummer mellan 1 och '+no_of_pages);
$('.goto').val("").focus();
return false;
}
});
});
load_data.php - php从mysql获取东西
<?php
if($_POST['page'])
{
$page = $_POST['page'];
$cur_page = $page;
$page -= 1;
$per_page = 15;
$previous_btn = true;
$next_btn = true;
$first_btn = true;
$last_btn = true;
$start = $page * $per_page;
include "config.php";
$query_pag_data = "SELECT id,name from th_list ORDER BY id DESC LIMIT $start, $per_page";
$result_pag_data = mysql_query($query_pag_data) or die('MySql Error' . mysql_error());
$msg = "";
echo '<table border="0" cellspacing="0">
<tr id="head"><th width="30">Kategori</th><th>Genre</th><th>Namn</th><th><img src="https://cdn1.iconfinder.com/data/icons/Sizicons/16x16/download.png"></th><th>Klick</th><th>Kommenterarer</th></tr>
';
while ($row = mysql_fetch_array($result_pag_data)) {
$htmlmsg=htmlentities($row['name']);
$msg .= "<tr><td># 1</td><td>Drama</td><td>" . $htmlmsg . "</td><td><img src='https://cdn1.iconfinder.com/data/icons/diagona/icon/16/095.png'></td><td>2</td><td>3</td></tr>";
}
$msg = "<div class='data'><ul>" . $msg . "</ul></div></table><br />"; // Content for Data
/* --------------------------------------------- */
$query_pag_num = "SELECT COUNT(*) AS count FROM th_list";
$result_pag_num = mysql_query($query_pag_num);
$row = mysql_fetch_array($result_pag_num);
$count = $row['count'];
$no_of_paginations = ceil($count / $per_page);
/* ---------------Calculating the starting and endign values for the loop----------------------------------- */
if ($cur_page >= 7) {
$start_loop = $cur_page - 3;
if ($no_of_paginations > $cur_page + 3)
$end_loop = $cur_page + 3;
else if ($cur_page <= $no_of_paginations && $cur_page > $no_of_paginations - 6) {
$start_loop = $no_of_paginations - 6;
$end_loop = $no_of_paginations;
} else {
$end_loop = $no_of_paginations;
}
} else {
$start_loop = 1;
if ($no_of_paginations > 7)
$end_loop = 7;
else
$end_loop = $no_of_paginations;
}
/* ----------------------------------------------------------------------------------------------------------- */
$msg .= "<div class='pagination'><ul>";
// FOR ENABLING THE FIRST BUTTON
if ($first_btn && $cur_page > 1) {
$msg .= "<li p='1' class='active'>Första</li>";
} else if ($first_btn) {
$msg .= "<li p='1' class='inactive'>Första</li>";
}
// FOR ENABLING THE PREVIOUS BUTTON
if ($previous_btn && $cur_page > 1) {
$pre = $cur_page - 1;
$msg .= "<li p='$pre' class='active'>Föregående</li>";
} else if ($previous_btn) {
$msg .= "<li class='inactive'>Föregående</li>";
}
for ($i = $start_loop; $i <= $end_loop; $i++) {
if ($cur_page == $i)
$msg .= "<li p='$i' style='color:#fff;background-color:#006699;' class='active'>{$i}</li>";
else
$msg .= "<li p='$i' class='active'>{$i}</li>";
}
// TO ENABLE THE NEXT BUTTON
if ($next_btn && $cur_page < $no_of_paginations) {
$nex = $cur_page + 1;
$msg .= "<li p='$nex' class='active'>Nästa</li>";
} else if ($next_btn) {
$msg .= "<li class='inactive'>Nästa</li>";
}
// TO ENABLE THE END BUTTON
if ($last_btn && $cur_page < $no_of_paginations) {
$msg .= "<li p='$no_of_paginations' class='active'>Sista</li>";
} else if ($last_btn) {
$msg .= "<li p='$no_of_paginations' class='inactive'>Sista</li>";
}
$goto = "<div style='float: right;'><input type='text' class='goto' style=' float: left; margin-left: 10px; width: 30px; height: 8px; '/><input type='submit' id='go_btn' style='width: 40px; padding: 0; margin-left: 5px; float: left; margin-top: 0px;height: 27px;' value='Gå'/></div>";
$total_string = "<span class='total' a='$no_of_paginations'>Sida <b>" . $cur_page . "</b> av <b>$no_of_paginations</b></span>";
$msg = $msg . "</ul>" . $goto . $total_string . "</div>"; // Content for pagination
echo $msg;
}
?>
然后在index.php上写这个,加载所有数据..
<div id="loading"></div>
<div id="containers">
<div class="data"></div>
<div class="pagination"></div>
</div>
如果你可以帮助我会很棒! :)
答案 0 :(得分:0)
以下是演示如何完成此操作的演示尝试在<th>
元素中添加锚点使用锚点的title属性作为列名称
echo '<table border="0" cellspacing="0">
<tr id="head">
<a href="javascript:void(0)" class="sorter" title="Kategori"><th width="30">Kategori</th></a>
<a href="javascript:void(0)" class="sorter" title="Genre"><th>Genre</th></a>
<a href="javascript:void(0)" class="sorter" title="Namn"><th>Namn</th></a>
<th><img src="https://cdn1.iconfinder.com/data/icons/Sizicons/16x16/download.png"></th>
<a href="javascript:void(0)" class="sorter" title="Klick"><th>Klick</th></a>
<a href="javascript:void(0)" class="sorter" title="Kommenterarer"><th>Kommenterarer</th></a>
</tr>
';
为课程sorter
添加点击功能
$('.sorter').live('click',function(){
var sorter = $(this).attr('title');
var page = $('#containers .pagination li.inactive:eq(0)').attr('p'); /* get current page no.*/
loadData(page,sorter);
});
您的loadData()
传递分拣机稍微更改为load_data.php
data: "page="+page+"&sorter="+sorter,
现在在您的查询中获取分拣机并通过
执行订购if($_POST['sorter']=="Kategori" || empty($_POST['sorter'])){
$order_column='id'; /* add conditions for other $_POST['sorter'] values */
}
$query_pag_data = "SELECT id,name from th_list ORDER BY $order_column DESC LIMIT $start, $per_page";
请不要使用它们被折旧的mysql *函数代替使用 准备好的陈述或至少使用mysqli *
希望它有意义,并会让你有机会像ASC / DESC那样继续排序
答案 1 :(得分:0)
在您的网页中放置一个链接,以便使用ajax调用:
<a href="javascript:void(0);" onclick="sortby_id()" >SORT BY ID </a>
并附上一个脚本文件,在其中定义你的功能:
function sortby_id() {
$.ajax({
type:"POST",
//data:"",
url:"http://www.yourdomain.com/yourpage.php?page=2",// you can use more variable, just pass it to the url here
success: function(data){
//write into div when successful handling
}, //end of success
error: function(){
// give your message when there is en error.
}// end of error
});
}// end of function
如果您想使用ajax,请使用上面的那个。这不会使页面重新加载。
如果你不想使用ajax或任何javascript,请使用以下内容
生成链接变量:
<a href="yourpage.php?page=2&sortby=id">SORT BY ID</a> // this will reload your page with page number two and variable will pass via url to handle it in your php file.
希望这有帮助
答案 2 :(得分:0)
我不介意使用插件我建议:http://tablesorter.com/docs/#Demo