を充填する自動以下のコードは、今..その作業を別の入力から的に基づいて、2入力フォームを埋めるだけ第loop..itsための第二及び第三のループ自動入力フォームアレイ
上で動作していません..私たちは、配列のようなものを使用する必要がありますが、これを行う方法がわからないイム知っている...
<script>
$(document).ready(function() {
$('#totalofservices').keyup(function(){
$("#totalontarget").val($(this).val());
$("#totalofftarget").val("0");
});
});
</script>
for($x=1; $x<=3; ++$x)
{
echo "<tr>
<td>Zone $x</td>
<td><input style='text-align:center' class='form-control' type='text' size='20' id='totalofservices' name='totalofservices'>
</td>
<td><input style='text-align:center' class='form-control' type='text' size='20' id='totalontarget' name='totalontarget'></td>
<td><input style='text-align:center' class='form-control' type='text' size='20' id='totalofftarget' name='totalofftarget'></td>
</tr>";
}
あなたがしています少し質問を明確にする必要があるだろう。 – Difster