私はASP.Net MVC
サイトを開発していて、データベースクエリからのいくつかの予約をテーブルにリストActionLink
し、次のBookingId
ような特定の行の予約をキャンセルします。
私の予約
<table cellspacing="3">
<thead>
<tr style="font-weight: bold;">
<td>Date</td>
<td>Time</td>
<td>Seats</td>
<td></td>
<td></td>
</tr>
</thead>
<tr>
<td style="width: 120px;">2008-12-27</td>
<td style="width: 120px;">13:00 - 14:00</td>
<td style="width: 100px;">2</td>
<td style="width: 60px;"><a href="/Booking.aspx/Cancel/15">cancel</a></td>
<td style="width: 80px;"><a href="/Booking.aspx/Change/15">change</a></td>
</tr>
<tr>
<td style="width: 120px;">2008-12-27</td>
<td style="width: 120px;">15:00 - 16:00</td>
<td style="width: 100px;">3</td>
<td style="width: 60px;"><a href="/Booking.aspx/Cancel/10">cancel</a></td>
<td style="width: 80px;"><a href="/Booking.aspx/Change/10">change</a></td>
</tr>
</table>
を使用しjQuery Dialog
て、ユーザーが予約をキャンセルするかどうかを確認するメッセージをポップアップ表示できると便利です。私はこれを機能させようとしていますが、パラメータを受け入れるjQuery関数を作成する方法に固執し続けているので、
<a href="https://stackoverflow.com/Booking.aspx/Cancel/10">cancel</a>
と
<a href="#" onclick="ShowDialog(10)">cancel</a>
。
次に、ShowDialog
関数はダイアログを開き、パラメーター10をダイアログに渡すので、ユーザーが[はい]をクリックすると、hrefが投稿されます。/Booking.aspx/Change/10
次のようなスクリプトでjQueryダイアログを作成しました。
$(function() {
$("#dialog").dialog({
autoOpen: false,
buttons: {
"Yes": function() {
alert("a Post to :/Booking.aspx/Cancel/10 would be so nice here instead of the alert");},
"No": function() {$(this).dialog("close");}
},
modal: true,
overlay: {
opacity: 0.5,
background: "black"
}
});
});
およびダイアログ自体:
<div id="dialog" title="Cancel booking">Are you sure you want to cancel your booking?</div>
最後に私の質問に:どうすればこれを達成できますか?またはそれを行うためのより良い方法はありますか?