動的な数のボタンがあり、すべてIDが「delete-button」のページがあります。私のjQueryはうまく機能しますが、「#delete-button」の最初のインスタンスでのみ機能します。
$(document).ready(function(){
$('#delete_button').mouseenter(function() {
$(this).closest('tr').css('border-left', 'solid');
$(this).closest('tr').css('border-left-width', '2px');
$(this).closest('tr').css('border-left-color', '#dd3333');
});
$('#delete_button').mouseleave(function() {
$(this).closest('tr').css('border-style', 'none');
});
});
これを引き起こしているのはどのような風邪ですか?同じIDのボタンを複数持つことはできませんか?