在模态上显示弹出窗口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在模态上显示弹出窗口相关的知识,希望对你有一定的参考价值。
我想在我的用例中的模态上显示一个弹出窗口。我无法在模态中隐藏或显示任何弹出窗口或任何其他div。顶部和左侧位置未设置为弹出窗口。我试过z-index但它没有用。
CSS:
<button id="button1">click</button>
<div class="modal" id="abc">
<div class="content">
<h1>Hi</h1>
<div id="popupabc" hidden="hidden">
<h1>Hello</h1>
</div>
</div>
</div>
JQuery的:
$(function(){
$("#button1).on('click',function(e){
$("#abc").modal('show');
});
$(document).on('click',function(e){
// getting mouse click positions left(x) and top(y).
$("#popupabc").css({position:'absolute',left:x,top:y});
$("#popupabc").show();
});
}
答案
<script type="text/javascript">
function ShowPopup(title, body) {
$("#MyPopup .modal-title").html(title);
$("#MyPopup .modal-body").html(body);
$("#MyPopup").modal("show");
}
</script>
<style>
blink {
animation: blinker 0.6s linear infinite;
color: #1c87c9;
}
@keyframes blinker {
50% { opacity: 0; }
}
.blink-one {
animation: blinker-one 1s linear infinite;
}
@keyframes blinker-one {
0% { opacity: 0; }
}
.blink-two {
animation: blinker-two 1.4s linear infinite;
}
@keyframes blinker-two {
100% { opacity: 0; }
}
</style>
<div id="MyPopup" class="modal fade" role="dialog" style="margin-top: 236px;margin-left: 245px;width:500px">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×</button>
<h4 class="modal-title">
<%--<img src="../../Images/banner.jpg" class=" img-responsive" style="width: 100%; height:450px">--%>
<blink>Here you can type any message which you want..!!</blink>
</h4>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">
Close</button>
</div>
</div>
</div>
</div>
- 这个是在aspx.cs代码中添加的------ ClientScript.RegisterStartupScript(this.GetType(),“Popup”,“ShowPopup();”,true);
以上是关于在模态上显示弹出窗口的主要内容,如果未能解决你的问题,请参考以下文章
使用模态弹出窗口在另一个 aspx 页面中显示 aspx 页面
如何显示与 TrsteelCkeditorBundle 集成的 FMElfinderBundle 的模态对话框或弹出窗口?