笑故挽风 2020-04-19 19:30 采纳率: 100%
浏览 82

在部分之间切换

I want to switch from main (home) section to, for instance, about section. I want to just replace my main content with new about section (whole bootstrap container). I want to make it fade out while about section comes in. Of course, without refreshing the page. Like on this website (try switching sections): https://covid19stats.live/

How can I do it?

  • 写回答

1条回答 默认 最新

  • weixin_33743703 2020-04-19 20:29
    关注

    I am not sure what you really want..

    but normally you place your content in different .html files and refer to them with a button or a link:

    <a href="about.html" 
       title="more informations">
        Href-attribute
    </a>
    

    edit: if you want to just change the content you need to use Ajax

    look here how to change content without reloading the page?

    评论

报告相同问题?