首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

上下键“← →”实现快速翻页

2012-06-27 
左右键“← →”实现快速翻页document.onkeydownfunction(b){b(b)?b:window.eventvar page_index 2//

左右键“← →”实现快速翻页

             document.onkeydown=function(b){             b=(b)?b:window.event;             var page_index = "2";  //当前页             var page_num = "4";  //页面总数             if(""==page_index)return;                                     if(b.keyCode=="37"){                 if(page_index > 1){                    window.location.href="Left Arrow - url";                 }             }else if(b.keyCode=="39"){                 if(parseInt(page_index) < parseInt(page_num)){                    window.location.href="Right Arrow - url";                 }             }         }

?

来自http://mobile.zol.com.cn?源码

转载请注明:来自ueaner.iteye.com,本文地址:http://ueaner.iteye.com/blog/1541643

?

?

热点排行