gpt4 book ai didi

javascript - 如何同时激活按钮个人资料和帖子?

转载 作者:太空宇宙 更新时间:2023-11-04 15:22:10 27 4
gpt4 key购买 nike

如果我在 127.0.0.1:8000/posts/我的按钮是“事件的”,但是如果我在 127.0.0.1:8000/profile/我的按钮“个人资料”是事件的但按钮“发布”不活动。

如何同时激活按钮个人资料和帖子?

<div class="container" />
<div class="navbar" />
<div class="navbar-inner" />
<a class="brand {%if request.get_full_path == '/'%} active{%endif%} " href="/">Start</a>
<ul class="nav">
<li {%if request.get_full_path == '/post/'%}class="active"{%endif%}><a href="/post/">{% trans "Post" %}</a></li>
</ul>



<ul class="nav" />
<li {% if active == 1 %}class="active"{%endif%}><a href="/profile/">{% trans "Profile" %}</a>
</li>
<li {% if active == 2 %}class="active"{%endif%}><a href="/posts/">{% trans "Post" %}</a></li>
....

如果这是事件的:

<li {% if active == 1 %}class="active"{%endif%}><a href="/profile/">{% trans "Profile" %}</a>

这个:

<li {%if request.get_full_path == '/post/'%}class="active"{%endif%}><a href="/post/">{% trans "Post" %}</a></li>

也必须是活跃的

最佳答案

有一个 if 语句,它为列表项之一提供了一个事件的 css 类。 if 语句不会使两个按钮都处于事件状态,因为“事件”不能同时具有 2 个不同的值。如果出于某种原因两者都需要处于事件状态,则可以删除 if 语句并将 css 类 active 应用于两者。

关于javascript - 如何同时激活按钮个人资料和帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14458066/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com