function playertv(title,date,url){ $("#tvplayer").html("
"+title+"
日期:"+date+"
"+url+"truetrueshowall\"/>
"); } $(document).ready(function(){ var cuttpage=1; $("#tvprev").click(function(){ cuttpage--; if(cuttpage<=1){ cuttpage=1; } $.ajax({ url:"newstv_page.php", type:"post", datatype:"text", data:"page="+cuttpage, success:function(data){ var datanumber=data.split("|").length-1; var html=""; html=""; $(".tv_piclist").html(html); } }) }) $("#tvnext").click(function(){ var totalpage=$("#totalpage").text(); cuttpage++; if(cuttpage>=totalpage){ cuttpage=totalpage; } $.ajax({ url:"newstv_page.php", type:"post", datatype:"text", data:"page="+cuttpage, success:function(data){ var datanumber=data.split("|").length-1; var html=""; html=""; $(".tv_piclist").html(html); } }) }) });