ポップオーバーに問題があります。ポップオーバー ボックスが入力フィールドの後ろに表示されます。見えるように前面に表示する必要があります。はい、IE8 を含む最新のすべてのブラウザで動作します。ただし、IE7 では壊れます。私はIE7があまり好きではありません。そして、私の職場はまだ IE7 をサポートしているので、仕方がありません。Bootstrap3 と popover を使用しています。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();
});