で
おかげでイベント機能上の$(この)、すなわちで試してみてください。 次にそれらのすべてのボタンにクリックイベントをバインドすることができ
共通クラスを持っている
<button id='one' type='button' class='my-edit-buttons'>button one</button>
<button id='two' type='button' class='my-edit-buttons'>button two</button>
<button id='thr' type='button' class='my-edit-buttons'>button thr</button>
のは、あなたのボタンを言わせて:
<script type='text/javascript'>
$('.my-edit-buttons').click(function(){
var buttonClicked = $(this);
var idOfButtonClicked = buttonClicked.attr('id');
alert(idOfButtonClicked);
});
</script>
あなたはこのソリューションhereをテストすることができます。