現在、「ページ」番号をクリックするとテキストのブロックが変わるようにしていますが、前と次のボタンを追加したいと思います。
ここで私の現在のバージョンをチェックしてください: http://jsfiddle.net/ZBWqS/
私が考えたすべてのソリューションは、実行を開始すると、機能しないコードの混乱に変わります。
noob-JS の質問で申し訳ありません。
<div id="1" style="display: block;">
<p>This is the first block of text</p>
<p class="page">
1 of 3
</p>
</div>
<div id="2" style="display: none;">
<p class="red">This is the second block of text</p>
<p class="page">
2 of 3
</p>
</div>
<div id="3" style="display: none;">
<span>This is the third block of text</span>
<p class="page">
3 of 3
</p>
</div>
<div class="bottom">
<a href="#" onclick="show('1'), hide('2'), hide('3'); return false;">1 </a><a href="" onclick="show('2'), hide('1'), hide('3'); return false;">2 </a><a href="" onclick="show('3'), hide('2'), hide('1'); return false;">3 </a>
</div>
<script>
function show(id) {
document.getElementById(id).style.display = 'block';
}
function hide(id) {
document.getElementById(id).style.display = 'none';
}
</script>