📌  相关文章
📜  如何使用 javascript 隐藏内容并通过链接显示 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:36.735000             🧑  作者: Mango

代码示例1
$(document).ready(function() {
    $('li').click(function () {
        $('.content:visible').hide(); // hides the visible content before 
        $('.content').eq($(this).index()).show(); // shows the corresponding content
    });
    });