我想转向杂志中的特定页面

时间:2012-07-21 05:18:11

标签: javascript jquery methods jquery-selectors

我正在使用来自github的turn.js,这真棒。他们有一种方法可以让您转到特定的页码:

$('selector').turn('page', pageNumber);

如何使用外部链接进行该工作。例如,我单击一个名为“page#20”的链接,它会跳转到该特定页面?

1 个答案:

答案 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]);
});