我正在创建基于不稳定源的系统,即我监视我的应用程序每次可以成功通过ajax成功访问此源的情况。
我创建了一个变量,无法理解每次成功时如何增加它。
Ajax
function scorePlus (id)
{
var value = parseInt(document.getElementById('num'+id).value, 10);
value = isNaN(value) ? 0 : value;
value++;
document.getElementById('total').value = value;
}
我的刀片
<div class="panel-body">
<div class="table-responsive">
<table class="table table-bordered">
@foreach($infractions as $infraction)
<tr>
<th>{{ $infraction->title }}</th>
<td>
<input type="hidden" id="num{{ $infraction->title }}" name="infractions[{{ $infraction->id }}]" value="0" >
<input type="checkbox" value="1" onchange="scorePlus({{ $infraction->score }})" name="infractions[{{ $infraction->id }}]">
</td>
</tr>
@endforeach
</table>
</div>
<div class="text-right">Total:
<span id="total">
</span>
</div>
</div>