我是 jquery 的新手。我正在更改输入文本的值,我需要更改下一个输入文本的值,所以我的代码是:
$(document).ready(function() {
$('[type=text]').change(function() {
$(this).next('input').val("newvalue");
});
});
但是什么都没有……!
编辑:从下面的评论中发布 HTML
<form method="post" action="/volume/create">
<table>
<tr>
<th><label for="volume_h1">H1</label></th>
<td><input type="text" id="volume_h1" name="volume[h1]"></td>
</tr>
<!-- .............. to volume_h24 -->
<tr>
<th><label for="volume_h24">H24</label></th>
<td><input type="text" id="volume_h24" name="volume[h24]"></td>
</tr>
</table>
</form>