123456789101112131415161718192021222324252627282930313233343536373839 |
- $(function(){
- $("#first").click(function(){
- var currentPage = $("#currentPage").text();
- if(currentPage == "1"){
- return false;
- }
- window.location.href = "get?page=1";
- });
-
- $("#previous").click(function(){
- var currentPage = $("#currentPage").text();
- if(currentPage == "1"){
- return false;
- }
- currentPage = parseInt(currentPage);
- currentPage--;
- window.location.href = "get?page="+currentPage;
- });
-
- $("#next").click(function(){
- var currentPage = $("#currentPage").text();
- var pages = $("#pages").text();
- if(currentPage == pages){
- return false;
- }
- currentPage = parseInt(currentPage);
- currentPage++;
- window.location.href = "get?page="+currentPage;
- });
-
- $("#last").click(function(){
- var currentPage = $("#currentPage").text();
- var pages = $("#pages").text();
- if(currentPage == pages){
- return false;
- }
- window.location.href = "get?page="+pages;
- });
- })
|