Link to a section of a webpage

后端 未结 4 1346
-上瘾入骨i
-上瘾入骨i 2020-12-02 13:53

I want to make a link that when clicked, sends you to a certain line on the page (or another page). I know this is possible, but how do I do it?

4条回答
  •  温柔的废话
    2020-12-02 14:54

    Hashtags at the end of the URL bring a visitor to the element with the ID: e.g.

    http://stackoverflow.com/questions/8424785/link-to-a-section-of-a-webpage#answers 
    

    Would bring you to where the DIV with the ID 'answers' begins. Also, you can use the name attribute in anchor tags, to create the same effect.

    Resource

提交回复
热议问题