模板.html
<td style="width:150px;"><input type="button" name="delete" value="{{ report_person.report_person.id}}" class="delete_icon" />{{report_person.report_person.name }}
</td>
上面的行是使用 python/django 动态创建的。它的人名和删除图标。对于动态创建的每一行,都会出现删除图标。
<td class="ir-shade" colspan="4"><button id="{{report_person.report_person.id}}" type="button" class="add_treatment" class="button_style">Add treatment notes</button>
<div id="result-{{report_person.report_person.id}}" class="toggle"></div></td>
Add treatment notes
是一个切换按钮,它在一个切换上显示治疗细节,在这种状态下按钮的名称变为Hide treatment notes
。
我想在处理注释打开时隐藏单个名称的 delete_icon 类 f。由于我对 delete_icon 使用 comman css 类,因此使用它 $('.delete_icon').hide();
隐藏了动态创建的所有行的删除图标。唯一唯一的是该删除的值按钮,这意味着删除图标。是否有任何可能性是他们参考值隐藏 css 类图标。这样删除图像只会在治疗说明处于打开状态的情况下隐藏。
注意:这是一些 django 代码用于传递变量,看起来与 html 不同。