2013-10-22 71 views
0

我使用分頁將內容分解爲塊(我們有下一個,上一個,當前按鈕)。如何使用jQuery將內容分割爲分頁塊?

我想在分頁中顯示數據(換句話說,我想在一個頁面中只有500個字符)。示例我有div(有一些數據)我想在分頁中顯示數據(next,previous button disable)。如果用戶點擊第一個按鈕,它只顯示前500個字符(以前是禁用的),那麼如果用戶點擊下一個按鈕而不是顯示下一個500個字符(先前啓用)。現在用戶可以使用檢查下一個或前一個500個字符。

點擊當前按鈕它顯示所有內容。 當我用這它不顯示我用這樣的 http://jsfiddle.net/naveennsit/aD4EF/5/

alert($("#test").html()); 
alert($("#test").html().length); 
var currentpage = 0; 
var str = new Array(); 
var len = $("#test").html().length; 
/*for(var i = 0; var = len; i++){ 

    str[i] = $("#test").html().substr(0, 500); 
}*/ 

$("#first").click(function() { 
    alert("first"); 
    var text = $("#test").html().substr(0, 500); 
    alert(text); 
    $("#test").empty(); 
    $("#test").val(text); // First time it is not working ? 

}); 
$("#nxt").click(function() { 
    alert("nxt"); 
}); 

$("#pre").click(function() { 
    alert("pre"); 
}); 

回答

1

500字符這裏是你的代碼的工作落實。

它使用正則表達式將文本分成500個字符的塊(實際上,它在每個第500個字符之後找到下一個句點以在句子結尾處分割)。

然後它用div包裝每個這些塊。

然後隱藏和顯示這些div,具體取決於哪個div處於活動狀態。

按鈕通過使用jQuery遍歷功能first()last()next()prev()的div遍歷。

的Javascript

var contentBlocks = $('#content').text().replace(/.{500}\S*\.\s+/g, '$&@').split(/\.\[email protected]/); 
var contentBlocksLength = contentBlocks.length; 
$('#content').html(''); 

$.each(contentBlocks, function(index, value) { 
    $('#content').append($('<div class="textBlock">' + value + ((index != contentBlocksLength - 1) ? '.' : '') + '</div>')); 
}); 

$('#content .textBlock').first().addClass('active'); 

$('#first').on('click', function() { 
    $('#content .textBlock.active').removeClass('active'); 
    $('#content .textBlock').first().addClass('active'); 
}); 

$('#next').on('click', function() { 
    if (!$('#content .textBlock.active').is(':last-child')) { 
     var $nextTextBlock = $('#content .textBlock.active').next('.textBlock'); 
     $('#content .textBlock.active').removeClass('active'); 
     $nextTextBlock.addClass('active'); 
    } 
}); 

$('#previous').on('click', function() { 
    if (!$('#content .textBlock.active').is(':first-child')) { 
     var $previousTextBlock = $('#content .textBlock.active').prev('.textBlock'); 
     $('#content .textBlock.active').removeClass('active'); 
     $previousTextBlock.addClass('active'); 
    } 
}); 

$('#last').on('click', function() { 
    $('#content .textBlock.active').removeClass('active'); 
    $('#content .textBlock').last().addClass('active'); 
}); 

$('#all').on('click', function() { 
    $('#content .textBlock').addClass('active'); 
}); 

CSS

#content .textBlock { 
    display: none; 
} 
#content .textBlock.active { 
    display: block; 
} 

HTML

<button id="first">First</button> 
<button id="previous">Previous</button> 
<button id="next">Next</button> 
<button id="last">Last</button> 
<button id="all">All</button> 
<div id="content">Ricky Thomas Ponting, AO (born 19 December 1974), nicknamed Punter, is an Australian cricketer, and former captain of the Australia national cricket team between 2004 and 2011 in Test cricket and 2002 and 2011 in One Day International cricket. He is a specialist right-handed batsman, slips and close catching fielder, as well as a very occasional bowler. He represents the Tasmanian Tigers in Australian domestic cricket, the Hobart Hurricanes in the Big Bash League, and played in the Indian Premier League with the Kolkata Knight Riders in 2008. He is widely considered by many to be one of the best batsmen of the modern era, along with Sachin Tendulkar of India and Brian Lara of the West Indies. On 1 December 2006, he reached the highest rating achieved by a Test batsman in the last 50 years. Ponting made his first-class debut for Tasmania in November 1992, when just 17 years and 337 days old, becoming the youngest Tasmanian to play in a Sheffield Shield match. However, he had to wait until 1995 before making his One Day International (ODI) debut, during a quadrangular tournament in New Zealand in a match against South Africa. His Test debut followed shortly after, when selected for the first Test of the 1995 home series against Sri Lanka in Perth, in which he scored 96. He lost his place in the national team several times in the period before early-1999, due to lack of form and discipline, before becoming One Day International captain in early-2002 and Test captain in early-2004. After being involved in over 160 Tests and 370 ODIs, Ponting is Australia's leading run-scorer in Test and ODI cricket. He is one of only four players (along with Sachin Tendulkar, Rahul Dravid and Jacques Kallis) in history to have scored 13,000 Test runs. Statistically, he is one of the most successful captains of all time, with 48 victories in 77 Tests between 2004 and 31 December 2010, while as a player he is also the only cricketer in history to be involved in 100 Test victories.[1] On 29 November 2012 Ponting announced his retirement from Test cricket, the day before he would play in the Perth Test against South Africa. This was his 168th and last Test appearance,[2] equalling the Australian record held by Steve Waugh.[3][4] Ricky Ponting retired on 3 December 2012 with a Test batting average of 51.85.[5] He continued to play cricket around the world. In February 2013 it was announced that he would be captaining the Mumbai Indians team in the Indian Premier League.[6] and in March 2013 he was announced as the first international franchise player for the Caribbean Premier League.[7] Later that month it was revealed by Ponting that this would be his last season playing cricket, as at the end of the competition he would be retiring from all forms of the game.[8] In his final first class innings for Surrey against Notts he hit an unbeaten 169 bringing up a total of 82 first class 100s in an illustrious county career.</div> 

Demo