我正在使用来自github的turn.js,这真棒。他们有一种方法可以让您转到特定的页码:
$('selector').turn('page', pageNumber);
如何使用外部链接进行该工作。例如,我单击一个名为“page#20”的链接,它会跳转到该特定页面?
答案 0 :(得分:0)
<a href="#" id="page-#20"> Page 20 </a>
$('a[id^="page"]').click(function(){
var thePage = $(this).prop('id').split('#');
//$('select').turn('page', thePage[1]);
console.log('The page is '+thePage[1]);
});