gpt4 book ai didi

html - 在 Django if/else 语句中用 CSS 替换图像

转载 作者:行者123 更新时间:2023-11-28 13:32:38 26 4
gpt4 key购买 nike

我正在尝试创建一个类似于 stackoverflow 的投票系统,但我不知道如何调用 css 而不是图像。

我有以下代码:

 <input type="image" id="uparrow{{ vote.id }}" src="{{ MEDIA_URL }}static/img/aup{% if vote and vote.is_upvote %}mod{% else %}grey{% endif %}.PNG">

如何更改代码,使其调用 css 类而不是 img src?

最佳答案

你正在寻找类似的东西:

<input type="image" id="uparrow{{ vote.id }}" 
src="{{ MEDIA_URL }}static/img/vote.png"
class="otherclass {% if vote and vote.is_upvote %}upvote{% else %}novote{% endif %}" />

图像在一种情况下会有类“otherclass”和“upvote”,在另一种情况下会有“otherclass”和“novote”。

关于html - 在 Django if/else 语句中用 CSS 替换图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13375126/

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