私は予定でいっぱいのテーブルを持っています。すべての予定には 2 つのボタンがあります。イベントをキャンセルするための 1 つ、それを受け入れるための 1 つ。
appointmentId
ボタンをクリックしたときに jQuery 関数を取得するのに苦労しています。これを行う方法のヒントを教えてください。はappointmentId
非表示の入力フィールドとして表に表示されます。
// my html code
<tr>
<td align="left">
<input type="hidden" name="appointmentId" value="234">
John Smith - 14.03.2013 at 9 o'clock
</td>
<td align="right">
<input type="button" id="acceptEvent" class="acceptEvent" value="Accept">
<input type="button" id="cancelEvent" class="cancelEvent" value="Cancel">
</td>
</tr>
// my jQuery code
$("body").delegate('.acceptEvent', 'click', function() {
console.log('accept event clicked');
// get the appointmentId here
});
$("body").delegate('.cancelEvent', 'click', function() {
console.log('cancel event clicked');
// get the appointmentId here
});