通过查看此图片更容易看出我的意思: http://postimg.org/image/fcmo6pbvp/
我试图让用户使用谷歌地图输入地址自动完成JS功能,如example。
它可以工作,但自动完成文本字段被jQuery Mobile弹出窗口阻止,就像显示的图片一样。
HTML看起来像这样:
<li>
<a href="#popupLocation" data-rel="popup" data-position-to="window"
class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-a" data-transition="pop">
<h3>Location</h3>
<p id="locationSelectionString">London, UK</p>
</a>
<div data-role="popup" id="popupLocation" data-theme="a" class="ui-corner-all">
<div style="padding:10px 20px;">
<h3 style="margin-top: 0px; margin-bottom: 0px;">Location</h3>
<hr>
<table width="100%">
<tr>
<input id="locationSelectionInput" onFocus="geolocate()" type="text" name="location" value="" placeholder="Enter a location" data-theme="a" style="margin-top: 0px; margin-bottom: 0px;">
</tr>
<tr>
<td width="50%">
<button style="margin-top: 0px; margin-bottom: 0px;" onclick="changeLocationCanceled();">Cancel</button>
</td>
<td width="50%">
<button style="margin-top: 0px; margin-bottom: 0px;" onclick="changeLocation();">OK</button>
</td>
</tr>
</table>
</div>
</div>
</li>
如果有人能告诉我出了什么问题,我会很高兴。
顺便说一句,不要嘲笑我的代码,这是我的第一个JS应用程序:p答案 0 :(得分:1)
克里斯蒂娜为时已晚。我希望能帮助其他人解决这个问题。
我的解决方案只是在你的css文件中添加代码。
.pac-container{
z-index: 9999 !important;
}