友達
次の DIV id refreshDiv を更新して 5 秒ごとに自動更新する次のコードがありますが、機能していません
<div id ="refreshDiv" class="span2" style="text-align:left;">
<c:set var="map" value="${alertStatusForm.channelStateForRecipients[currentChannel]}"></c:set>
<div>
<label><img src="${channelIcon}">
${fn:length(map['DELIVERED'])}</label>
</div>
<div>
<label><img src="${channelIcon}">
${fn:length(map['FAILED'])}</label>
</div>
<div>
<label><img src="${channelIcon}">
${fn:length(map['IN_PROGRESS'])}</label>
</div>
</div>
function refreshDiv(){
$.ajax({
url: 'editReg.jsp'
}).done(function(result) {
$('#refreshDIV').text(result);
});
}