Bootstrap Collapse - open the given id fragment

后端 未结 4 1972
温柔的废话
温柔的废话 2020-12-16 12:14

Imagine a Bootstrap collapse with 3 parts

...
4条回答
  •  -上瘾入骨i
    2020-12-16 12:39

    Yet another solution, a bit smaller and compact:

    $(document).ready(function() {
      var anchor = window.location.hash;
      $(anchor).collapse('toggle');
    });
    

提交回复
热议问题