こんにちは、私のコードです。次にすべてjqueryで動作していません。私が入力を入力すると、次のすべての入力は同じ値でなければならず、以前の値は変更しないでください。ここで私はコードを書いたが、値が与えられたときに次の入力は値を得ていない。私は任意の値を変更した場合は、次の値を変更する必要がありますが、.nextAll()
が兄弟のために適用されなければならないので、ない以前のjquery次のすべては入力用に機能しません
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('.tot').change(function(){
var tc=$(this).val();
$(this).nextAll('.tot').each(function(){
$(this).val(tc);
});
});
});
</script>
</head>
<body>
<?php
include('connect.php');
$yr=$_POST['year'];
$sm=$_POST['sem'];
$br=$_POST['branch'];
$sc=$_POST['sec'];
$k=0;
$sql="select rollno from intstd where year='$yr' and sem='$sm' and branch='$br' and sec='$sc'";
$query=mysql_query($sql);
echo"<table>";
while($row=mysql_fetch_array($query))
{
$k++;
$roll=$row['rollno'];
echo"<tr>";
echo"<td>$k</td>";
echo"<td>$roll</td>";
echo"<td><input type='text' class='tot' name='a[]'/></td>";
echo"<td><input type='text' name='b[]' /></td>";
echo"</tr>";
}
echo"</table>";
?>
</body>
</html>
テーブルのために働いていません。上記の修正はdivのために働いています。テーブル – PAVAN
について教えてください[作品](https://jsfiddle.net/xv2avray/4/)。 – voloshin
jsfiddleのdivを置き換えるテーブルであなたのサンプルを編集しました。動いていない。 – PAVAN