我有一张满满当当的桌子。每个约会都有两个按钮。一个用于取消事件,一个用于接受它。
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
});