如何基于 Python If 语句添加条件 CSS 类

Posted

技术标签:

【中文标题】如何基于 Python If 语句添加条件 CSS 类【英文标题】:How to add Conditional CSS class based on Python If statement 【发布时间】:2017-10-07 01:48:11 【问题描述】:

如何在以下示例中添加基于 Python if 语句的条件 CSS 类以显示 has-success has-feedback 表单元素?

<div class="form-group % if not error_username % has-success has-feedback % endif %">

【问题讨论】:

你没有工作吗? 它没有。我最终运行了% if error_username %,然后运行 ​​div 类,如果出现错误,然后运行% else % 没有错误的 div,最后运行% endif %,但代码很多。 【参考方案1】:

这样写 if 条件。

<div class="form-group 'has-success has-feedback' if not error_username ">

【讨论】:

以防万一:完整的表格也允许else。手册页:jinja.palletsprojects.com/en/2.11.x/templates/#if-expression

以上是关于如何基于 Python If 语句添加条件 CSS 类的主要内容,如果未能解决你的问题,请参考以下文章

Magento 1.9 - 如何在 CSS 中添加 if - else 条件?

如何在php中的if语句中添加多个条件

如何在python中为一个if语句设置多个条件[重复]

Python Selenium:使用 css,我如何制作 if else 语句?

如何根据条件语句添加 React 组件,基于可变计数器评估布尔值

条件判断