所以我尝试添加动态元素,如下例所示。
String format = ld.format(DateTimeFormatter.ofPattern("yyyy.MM.dd."));
我有一些加载页面的功能
<div class="container">
<div class="row">
<div id="firstSlice">
<div class="col-lg-5 col-md-5 col-xs-5">
<div class="col-lg-12 col-md-12 col-xs-12 box_challenger connected list" id="mylistPost">
{% for challenger in challengers %}
<div class="col-lg-12 col-md-12 col-xs-12 div_challenger" style="background-color: #{{challenger.cor}}; color:{{challenger.text_color}};" data-toggle="tooltip" data-placement="right" title="{{challenger.title}}">
<span class="{{challenger.icon}}"></span>
<b>  {{challenger.title|slice:":10"}}</b>
<input type="hidden" value="{{challenger.id}}" name="inputChallengerSelected">
</div>
{% endfor %}
</div>
</div>
</div>
<div id="secondSlice">
<div class="col-lg-1 col-md-1 col-xs-2 text-center" name="listaGet">
<br>
<br>
<br>
<br>
<br>
<br>
<span class="fa fa-arrow-circle-right fa-2x"></span>
</div>
</div>
<div id="thirdSlice">
<div class="col-lg-5 col-md-5 col-xs-5" id="mylistGet">
<div class="col-lg-12 col-md-12 col-xs-12 box_challenger challenger-selected`+ newGateCount + ` connected list no2">
</div>
</div>
</div>
</div>
</div>
我想知道如何解决这个问题, 我知道问题存在是因为我的函数已经被加载了,即当我添加一个新的动态html时,它没有执行已经加载的函数
如果有人知道如何重新加载此功能或有任何其他想法,我会感激。