js数组实现上一篇下一篇功能

2024年12月14日 建站教程

功能介绍:利用js实现数组中的文章上一篇下一篇切换,下面给大家简单介绍一下具体实现代码!

具体实现代码如下:

<html>
<body>
    <button id="prev">上一篇</button>
    <button id="next">下一篇</button>
    <div id="article">
        <!-- 这里是要实现的文章的内容 -->
    </div>
    <script>
        let currentArticleIndex = 0;
        const articles = [
            "文章1的内容",
            "文章2的内容",
            "文章3的内容",
            "文章4的内容",
            "文章5的内容",
            "文章6的内容",
            "文章7的内容"
        ];

        document.getElementById('next').addEventListener('click', function() {
            currentArticleIndex++;
            if (currentArticleIndex >= articles.length) {
                currentArticleIndex = 0;  // 回到第一篇如果已经是最后一篇
            }
            document.getElementById('article').textContent = articles[currentArticleIndex];
        });

        document.getElementById('prev').addEventListener('click', function() {
            currentArticleIndex--;
            if (currentArticleIndex < 0) {
                currentArticleIndex = articles.length - 1;  // 回到最后一篇如果已经是第一篇
            }
            document.getElementById('article').textContent = articles[currentArticleIndex];
        });
    </script>
</body>
</html>

本文链接:http://so.lmcjl.com/news/19567/

展开阅读全文
相关内容