Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建 javascript 或 jquery,以最简单的为准,使用切换功能,其中按钮在两篇文章之间切换。第一篇文章仅包含文本,第二篇文章包含三个段落和图形(图像和图形标题)。
您可以在此处使用 jquery 示例中的.toggle ()函数
我会使用 jquery 切换功能,以及隐藏和显示功能。
$('button').click().toggle(function () { $('item1').show(); $('item2').hide(); }, function () { $('item1').hide(); $('item2').show(); });