使用锚标记Django链接url中另一个页面中的div

时间:2015-07-27 01:12:09

标签: django url anchor

我正在尝试使用Django中的锚标记和url访问另一个页面中的div。

这是一个html,

<a href="{% url 'anotherpage#show' %}>click here </a>

在另一页中,

<div id="show">link to this div </div>

如何使用网址访问show div?

1 个答案:

答案 0 :(得分:5)

您需要先链接到该页面。然后链接到Anchor

## assume this will take you to the main page. 
<a href="{% url 'anotherpage' %}>Page URL</a>

然后,您只需在url标记后添加所需的锚点即可。

<a href="{% url 'anotherpage' %}#show">Page URL to show directly. </a>

希望它有所帮助。