翻阅Turn.js中的Pages时传递Mutilple参数

时间:2018-01-29 19:48:55

标签: jquery html5 turnjs

我正在尝试使用turn.js在翻转时传递多个参数。当前选项仅为pageNumber提供,即。

而不是

function addPage (page, book) {
    //Check if the page is not in the book
    if ( ! book. turn( 'hasPage' , page)) {
        // Create an element for this page
        var element = $ ( '<div />' ). html ( 'Loading…' );
        // Add the page
        book.turn( 'addPage' , element, page);
        // Get the data for this page
        $.ajax ({url : "app?method=get-page-content&page=" + page)
            .done( function (data) { element. html (data); });
    }
}

我想要

function addPage (page, book) {
    // Check if the page is not in the book
    if ( ! book. turn( 'hasPage' , page)) {
        // Create an element for this page
        var element = $ ( '<div />' ). html ( 'Loading…' );
        // Add the page
        book.turn( 'addPage' , element, page, chapter);
        // Get the data for this page
        $.ajax ({url : "app?method=get-page-content&page="+ 
page+ "&currentChapter" + chapter)
            .done( function (data) { element. html (data); });
    }
}

这样我就可以确定要服务的章节中的页面。

示例代码将不胜感激。

0 个答案:

没有答案