同じASPボタンにアラートと確認の両方のポップアップが必要な状況があります。検証のためのアラートが必要です。ユーザーが必要なすべての情報を入力したら、電子メールを送信したり、別のエントリを送信したりするための確認ポップアップが必要です。
アラートと確認の両方にjQueryダイアログポップアップをすでに使用していますが、同じボタンでそれらを組み合わせる方法がわかりません。
//私の確認コード
<script type="text/javascript">
jQuery(function() {
var dlg = jQuery("#dialog").dialog({
draggable: false,
autoOpen: false,
minHeight: 10,
minwidth: 10,
zIndex: 99999
});
$('#<%=btnStart.ClientID%>').click(function() {
$('#dialog').dialog('open');
});
$(".ui-dialog-titlebar").hide();
$(".ui-dialog-titlebar-close").hide();
dlg.parent().appendTo(jQuery("form:first"));
});
<asp:Button id="btnStart" runat="server" Text="btnStart" onclick="btnStart_Click" />
<div id="dialog" style="text-align: center; display: none;font-size:14px;">
<table>
<tr>
<td colspan="2">
<asp:Label Text="Do you want to exclude these dates?" runat="server" ID="lbl"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnOk" runat="server" Text="Yes" OnClick="btnOK_Click" Style="width: 60px;" />
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="No" OnClick="btnCancel1_Click" Width="60px" />
</td>
</tr>
</table>
</div>
//アラートポップアップ
$(document).ready(function() {
$('#<%=btnStart.ClientID%>').click(function() {
alert("Correct it!");
});
});
これは.netWebアプリケーションです。