链接到同一类的许多div之一?

时间:2014-01-10 05:41:53

标签: html hyperlink anchor

有时我想发送链接到例如报纸上的一篇文章,希望接收者阅读特定的段落,章节或类似内容。如果页面的结构类似于

<p class="h2">Some header
    <p class="body">Body text

等。是否可以专门链接到这些元素中的任何一个?例如,我希望有人阅读第四段,也就是第四次使用class =“h2”,类似于。我知道,但我不记得ATM的语法,XPaths提供了这个功能,但是html怎么样?

3 个答案:

答案 0 :(得分:1)

Google Chrome 几个月前就提供了此功能。右键单击您想要直接链接到的任何内容,然后选择复制链接。结果是这样的:

https://stackoverflow.com/questions/21036942/link-to-one-of-many-divs-with-the-same-class#:~:text=If%20you%20visit-,following,-link%2C%20this%20will

到目前为止,并非所有浏览器都支持此功能,但我想随着时间的推移,它会传播。

答案 1 :(得分:0)

这对你有用http://www.web-source.net/html_link_anchors.htm#.Us-JX7T6SrE

<p class="h2"><a href="#text">Some header</a></p>
<p class="body" name="text">Body text</p>

答案 2 :(得分:0)

<html>
<body>

<p>
<a href="#C4">See also Chapter 4.</a>
</p>

<h2>Chapter 1</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 2</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 3</h2>
<p>This chapter explains ba bla bla</p>

<h2><a id="C4">Chapter 4</a></h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 5</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 6</h2>
<p>This chapter explains ba bla bla</p>
</body>
</html>

如果您访问以下链接,则会将您带到页面底部(此页面也解释了该主题):

http://www.myhtmltutorials.com/jump.html#Bot