我可以在其他地方为html中的一个元素添加两个类吗?
Can I add two classes to an element in html in other places?
我正在为 Flask 编写模板(特别是分页),但不知道如何保护 class“page-item”并给出 class“disabled”
<li class="page-item"
{% if pages.has_prev %}
class="disabled"
{% endif %}>
您可以有多个 类,但不能有多个 class
属性。它们都必须在同一个属性中。
将 if
放在 class
属性中。
<li class="page-item {% if pages.has_prev %} disabled {% endif %}" >
我正在为 Flask 编写模板(特别是分页),但不知道如何保护 class“page-item”并给出 class“disabled”
<li class="page-item"
{% if pages.has_prev %}
class="disabled"
{% endif %}>
您可以有多个 类,但不能有多个 class
属性。它们都必须在同一个属性中。
将 if
放在 class
属性中。
<li class="page-item {% if pages.has_prev %} disabled {% endif %}" >