77

我在 Twitter Bootstrap 模式对话框中有一个 Google Maps Autocomplete 输入字段,并且不显示自动完成结果。但是,如果我按向下箭头键,它会选择下一个自动完成结果,所以似乎自动完成代码工作正常,只是结果没有正确显示。也许它隐藏在模态对话框后面?

这是屏幕截图:

在自动完成字段中键入内容什么也没有 在自动完成字段中键入内容什么也没有

按向下箭头键给出第一个结果 按向下箭头键给出第一个结果

和代码:

<div class="modal hide fade" id="map_modal">
<div class="modal-body">
    <button type="button" class="close" data-dismiss="modal">×</button>
    <div class="control-group">
        <label class="control-label" for="keyword">Cari alamat :</label>
        <div class="controls">
            <input type="text" class="span6" name="keyword" id="keyword">
        </div>
    </div>
    <div id="map_canvas" style="width:530px; height:300px"></div>
</div>
<div class="modal-footer">
    <a href="#" class="btn" data-dismiss="modal">Close</a>
    <a href="#" class="btn btn-primary">Save changes</a>
</div>

<script type="text/javascript">
$("#map_modal").modal({
    show: false
}).on("shown", function()
{
    var map_options = {
        center: new google.maps.LatLng(-6.21, 106.84),
        zoom: 11,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    var map = new google.maps.Map(document.getElementById("map_canvas"), map_options);

    var defaultBounds = new google.maps.LatLngBounds(
        new google.maps.LatLng(-6, 106.6),
        new google.maps.LatLng(-6.3, 107)
    );

    var input = document.getElementById("keyword");
    var autocomplete = new google.maps.places.Autocomplete(input);
    autocomplete.bindTo("bounds", map);

    var marker = new google.maps.Marker({map: map});

    google.maps.event.addListener(autocomplete, "place_changed", function()
    {
        var place = autocomplete.getPlace();

        if (place.geometry.viewport) {
            map.fitBounds(place.geometry.viewport);
        } else {
            map.setCenter(place.geometry.location);
            map.setZoom(15);
        }

        marker.setPosition(place.geometry.location);
    });

    google.maps.event.addListener(map, "click", function(event)
    {
        marker.setPosition(event.latLng);
    });
});
</script>

我已经尽力自己解决这个问题,但是由于我不知道自动完成结果的 html&css(检查元素什么也没给出),所以我现在迷路了。有什么帮助吗?

之前谢谢!

4

9 回答 9

125

问题z-index在于.modal

使用这个CSS标记:

.pac-container {
    background-color: #FFF;
    z-index: 20;
    position: fixed;
    display: inline-block;
    float: left;
}
.modal{
    z-index: 20;   
}
.modal-backdrop{
    z-index: 10;        
}​

您也可以在此处查看最终演示

ps:感谢@lilina 在 jsfiddle.com 上的演示

于 2012-06-09T05:15:57.473 回答
66
.pac-container {
    z-index: 1051 !important;
}

为我做的

https://github.com/twbs/bootstrap/issues/4160

于 2014-10-05T16:20:15.357 回答
15

Bootstrap 的.modal z-index默认值为 1050。

jQuery UI.ui-autocomplete z-index默认为 3。

所以把它放在CSS上:

/* Fix Bootstrap .modal compatibility with jQuery UI Autocomplete,
see http://stackoverflow.com/questions/10957781/google-maps-autocomplete-result-in-bootstrap-modal-dialog */
.ui-autocomplete {
    z-index: 1051 !important;
}

创造奇迹!:)

于 2012-10-08T09:24:04.317 回答
12

使用引导程序 3:

.pac-container {
  z-index: 1040 !important;
}
于 2013-09-04T19:03:29.137 回答
6

在我的场景中, .pac-container 的 z-index 值将是 init 并覆盖为 1000,即使我在 CSS 中设置。(可能通过谷歌 API?)

我的肮脏修复

$('#myModal').on('shown', function() {
     $(".pac-container").css("z-index", $("#myModal").css("z-index"));
}
于 2013-03-31T10:58:11.180 回答
5

我花了 2.3 个小时来挖掘 google places API drop down z index 的错误。最后我找到了这个。只需将此代码粘贴到您的 JS 脚本顶部并更新输入 ID 名称。

var pacContainerInitialized = false;
$("#inputField").keypress(function() {
  if (!pacContainerInitialized) {
    $(".pac-container").css("z-index", "9999");
    pacContainerInitialized = true;
  }
});

完整参考链接。 https://groups.google.com/forum/#!topic/google-maps-js-api-v3/GZX0ynQNn1M 感谢 Gautam。

于 2019-07-26T18:06:10.047 回答
4

通常,您可以将 .pac-container z-index 提高到 1050 以上的任何值,并且不需要其他 CSS 覆盖。

我发现 jQuery UI 对话框也存在这个问题。因此,如果它最终对其他人有所帮助,这里有一个关于 Bootstrap/jQuery UI 模态在 z 平面中的位置的快速参考:

jQuery UI Dialog - z-index: 1001
Bootstrap Modal - z-index: 1050
于 2012-08-21T08:56:21.640 回答
2

这对我有用。

                   var pacContainerInitialized = false; 
                    $('#inputField').keypress(function() { 
                            if (!pacContainerInitialized) { 
                                    $('.pac-container').css('z-index','9999'); 
                                    pacContainerInitialized = true; 
                            } 
                    }); 
于 2017-02-10T14:38:16.977 回答
0

如果您使用的是 Visual Studio,请在您的style.css页面上将 for 设置z-index.modal20。

例如

.modal {
    z-index: 20 !important;
}
于 2016-03-09T09:20:43.800 回答