i have the following markup:
<form method="post" action="#">
<tr>
<td><input class="" name="fees_word" class="autoupdate" value=""/></td>
<td><input class="" name="fees_figure" class="autoupdate" value=""/></td>
<td><button type="button" class="btn hide">Update</button></td>
</tr>
<tr>
<td><input class="" name="fees_word" class="autoupdate" value=""/></td>
<td><input class="" name="fees_figure" class="autoupdate" value=""/></td>
<td><button type="button" class="btn hide">Update</button></td>
</tr>
</form>
onkeyup对任何输入,我想改变同一表格行中的按钮类,并显示它。
尝试了这个:
<script>
$('input').keyup(function(){
var val = $(this).val();
$(this).next('button').removeClass('hide');
});
</script>
但没有运气,我怎么能做到这一点。谢谢你