0

当模态出现时,有一个选择列表锚定在页面的左上角。最终,该列表将用于提供导航选项;但是我无法在列表中选择一个选项。我试图将 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>

4

2 回答 2

2

要解决模式在关闭时阻塞其下方的所有元素的问题,您还可以添加以下块:

<style>
  /*Modal blocking caused issues with selecting objects*/
  .modal { display:none; }
</style>
于 2014-03-03T20:23:20.373 回答
0

Twitter引导多模态错误

我的假设是正确的。模态强制关注自身。以上有@SmartLove 创建的解决方案。基本上在引导脚本之后放置以下内容..

$.fn.modal.Constructor.prototype.enforceFocus = function () {};

现在选择元素按预期工作!呜呼!

于 2013-10-17T16:44:50.070 回答