0

我有弹出框的问题。弹出框显示在输入字段的后面。我需要它出现在前面,以便可以看到。是的,它适用于所有现代浏览器,包括 IE8。但是,它在 IE7 中中断。我不太喜欢IE7。而且,我别无选择,因为我的工作场所仍然支持 IE7。我正在使用 Bootstrap3 和弹出框。我确实意识到 BootStrap3 已经放弃了对 IE7 的支持。但除了弹出框外,我对此非常接近。那我真的可以睡觉了。也许再来一杯可口可乐或咖啡。

下面的示例代码......请知道如何解决这个问题

  <div class="form-group">
    <div class="col-xs-4">
      <label class="control-label" for="custom2">Date of Birth</label>
      <img src="32005/images/iconQuestion.png" alt="Help" data-toggle="popover" data-placement="right" data-content="This will make up the PIN for the prepaid visa gift card" class="popUp"/> </div>
    <div class="col-xs-8">
      <input type="text" class="form-control input-md" value="" id="custom2" name="custom2" value="">
      <span class="mandatory"> * </span> </div>
  </div>



$(function(){
  $("[data-toggle=popover]").popover();
});
4

1 回答 1

0

我想你知道但是:

Bootstrap 3,对 Internet Explorer 7 的支持已从项目中删除。如果您需要 IE7 支持,请考虑尝试 bootstrap-ie7。

免责声明:

Bootstrap 3 放弃了对 Internet Explorer 7 的支持,但您可以通过简单地添加此条件 CSS 来添加它。

试试看: https ://github.com/coliff/bootstrap-ie7

于 2013-09-17T06:21:35.603 回答