3

背景:我有一个动态表(因为直到运行时我才知道它的大小/元素),我试图用 javascript 函数填充文本区域。为此,我计划将文本区域的 id 以及我想要填充它的值传递到 javascript 函数中。

问题是我无法为每个文本输入字段创建动态 id 值。这就是我目前尝试这样做的方式:

   {% with "input_"|add:applicant.id as idName %}
        <input id="{{ idName }}" type="text" value="">
        <input type="button" hidden="TRUE" onclick="">
        {{ idName }}
        <script>
            putTags({{ idName }}, {{ tags }});
        </script>
   {% endwith %}

函数 putTags() 将填充文本输入的内容。不幸的是,这不起作用,因为它将每个人的 id 分配给“input_”而不附加申请人.id 的值(我已经检查过,申请人.id 每次迭代都有一个正确的 id)。难道我做错了什么?有没有更简单的方法来创建这些唯一 ID?

4

1 回答 1

7

你可以试试这样的

<input id="input_{{ applicant.id }}" type="text" value="">
<input type="button" onclick="putTags('input_{{ applicant.id }}', {{ tags }});">
于 2013-04-10T17:47:07.017 回答