当出现模态时,会有一个锚定在页面左上角的选择列表。最终该列表将用于提供导航选项;但是我无法在列表中选择一个选项。我试图将z-index设置为高于模态,但似乎没有任何效果。希望有人可以对解决方案有所了解吗?谢谢!
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Tool</title>
<!-- Bootstrap v2.3.2 -->
<link href="css/bootstrap.css" rel="stylesheet" />
</head>
<body>
<button type="button" class="onl btn btn-success btn_online">Submit</button>
<!-- popup message -->
<div id="popup_message" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="_c1g">Description</h3>
</div>
<div class="well msg" id="msg" style="max-height:400px;overflow:auto;"></div>
<div class="modal-footer">
<button class="btn _c1e" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
<script src="script/jquery-1.8.3.js" type="text/javascript"></script>
<!--Bootstrap v3.0.0-->
<script src="script/bootstrap.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
$(document).on('click', '.btn_online', function (e) {
$('#popup_message').modal('show');
$("body").append("<select id='my_redirect' style='top:20px;left:20px;z-index:1051;position:absolute;'><option value='' >Select...</option><option value='Page1' >Page1</option><option value='Page2' >Page2</option></select>")
});
});
</script>
答案 0 :(得分:2)
要解决模式在关闭时阻止其下方所有元素的问题,您还可以添加以下块:
<style>
/*Modal blocking caused issues with selecting objects*/
.modal { display:none; }
</style>
答案 1 :(得分:0)
Twitter bootstrap multiple modal error
我的假设是正确的。模态强调关注自身。以上是由@SmartLove创建的解决方案。基本上在引导脚本之后放置以下内容..
$。fn.modal.Constructor.prototype.enforceFocus = function(){};
现在select元素按预期工作!呜呜!