在if语句下的html中使用javascript变量

时间:2015-04-08 09:43:47

标签: javascript jquery python html jinja2

我有一个html页面,我动态显示属性列表。接下来,我计算每个div中显示的属性数。

  <script type="text/javascript">
        var numItems = $('.countdiv').length;
        </script>

countdiv是每个属性的类名。现在在我的html页面中,我有一个变量properties_count,它具有从我的数据库中提取的总属性的数量。

我想在numItems语句中比较properties_countif,如下所示:

{% if(numItems!=properties_count) %}
     # some function to load more properties

但比较不起作用。如何在html中使用numItems(javascript变量)?

1 个答案:

答案 0 :(得分:0)

你可以做反向。你可以在javascript中使用django / jinja2变量

<script type="text/javascript">
    var numItems = $('.countdiv').length;
    var properties_count = '{{properties_count}}';
    if (numItems != properties_count) {
        //Do you code using javascript 
    }
</script>