0

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

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

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

4

1 回答 1

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]);
});
于 2012-07-21T05:25:12.343 回答