クリックされたテーブル行内のボタンごとに、付随する入力フィールドの値が取得され、クエリを実行する PHP ファイルにデータとして送信されるようにしたいと思います。
<script type="text/javascript">
$("tr").each(function() {
var password = $(this +" td input").val();
$(this +" td button").click(function(){
$.ajax({
type:"POST",
url:"script.php",
data:"password="+ password,
});
});
});
</script>
<?php
for($i=0;$i<10;$i++) {
echo "<tr>
<td>
<input type='text' maxlength='15' value=''/>
<button>Change</button>
</td>
</tr>";
}
?>
ただし、各行の入力フィールドとボタンを選択できないようです。何か案は?