我正在显示确认模式弹出窗口,用户可以选择是或否,当用户点击是时我想显示另一个模态弹出窗口 这是我的确认脚本:
<script type="text/javascript">
function openModalConfirm(message, header, url) {
$(<%= myModal.ClientID%>).modal('show');
$('#lblMasterMessage').html(header);
$('#lblMasterbodyMessage').html(message);
$('#<%= BtnYes.ClientID %>').attr('onclick', "$('#myModal').modal('hide');setTimeout(function(){" + $(sender).prop('href') + "}, 50);");
$(<%= myModal.ClientID%>).on('hidden.bs.modal', function (e) {
if (url != '') {
window.location = url;
}
});
return true;
}
</script>
这是我想在显示上面的弹出窗口后显示的moadal弹出窗口
<script type="text/javascript">
function openModal(message, header, url) {
$('#myModal').modal('show');
$('#lblMasterMessage').html(header);
$('#lblMasterbodyMessage').html(message);
$('#myModal').on('hidden.bs.modal', function (e) {
if (url != '') {
window.location = url;
}
});
}
</script>