我正在尝试使用Django中的锚标记和url访问另一个页面中的div。
这是一个html,
<a href="{% url 'anotherpage#show' %}>click here </a>
在另一页中,
<div id="show">link to this div </div>
如何使用网址访问show
div?
答案 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>
希望它有所帮助。