Go to div of another page in HTML

前端 未结 3 1197
遥遥无期
遥遥无期 2021-01-12 23:42

I would like to go to the DIV of a particular page from a different page. Is that possible?

I tried Hello<

3条回答
  •  爱一瞬间的悲伤
    2021-01-12 23:45

    With HTML 5, you need to simply add an id attribute to your

    with a value of product. This needs to be a unique id attribute within the page (for all elements):

    See the working draft.

    In HTML 4.01 you need to use an anchor tag with a name just above your target div, or any other element with an id attribute in the other page:

    
    
    ...

    See the HTML 4.01 spec.

    Note: The name attribute has been deprecated in the XHTML 1.0 spec.

    So, this would be a better option, as it would work for HTML 4.01, XHTML 1.0 and HTML 5:

自定义标题
段落格式
字体
字号
代码语言
提交回复
热议问题