jinja2数组和脚本功能

时间:2018-12-02 06:43:33

标签: javascript python jinja2

<tbody>
{% for a in abc %}
    <tr onclick="load_user_info({{ a[1] }})">
        <th scope="row">{{ loop.index }}</th>
        {% for info in a %}
            <td>{{ info }}</td> 
        {% endfor %}
    </tr>
{% endfor %}
</tbody>


<script>
function load_user_info(id){
    alert(id);
};
</script>

a是数组 警报没有按我预期的那样出现。 我有什么要修复的吗?


我一直在尝试

a=['abc', 'vfe', 111, 'sefs']

然后在load_user_info({{ a[2] }})

时发出警报

但对于其他操作则无效。


试图使用js

使用过的<tr id="load_user_info">

和脚本

$('#load_user_info').click(function(){
    alert('Hello');
});

以上操作无效...

谁能给我答案?..

0 个答案:

没有答案