我有一个导航菜单,当您单击一个选项时,我希望它可以将内容容器更改为其他内容容器,或仅显示适当的内容容器。我的目标是将内容容器之外的多个页面合并为一个页面。

最佳答案

 $('.option-toggle-selector').on('click', function() {
      $('.my-content-container-selector').replaceWith(otherContainerElement);
 });


其中otherCotainerElement可以是jquery元素,也可以只是硬编码的html字符串。我想您在这里询问的关键功能是replaceWith:http://api.jquery.com/replacewith/

08-07 08:14