Bootstrap:Popover忽略在iOS浏览器中不起作用

时间:2016-11-08 09:39:15

标签: javascript html css iphone twitter-bootstrap

我已经使用了Bootstrap Popover并添加了JS代码以便在体内轻轻一点。它适用于Android但不适用于iOS。

$(document).ready(function () {
  $("body").tooltip({   
    selector: "[data-toggle='tooltip']",
    container: "body"
  })
  .popover({
    selector: "[data-toggle='popover']",
    container: "body",
    html: true
  });
});

$('body').on('click', function (e) {
  $('[data-toggle="popover"]').each(function () {
    if(!$(this).is(e.target) &&
       $(this).has(e.target).length === 0 &&
       $('.popover').has(e.target).length === 0) {
      $(this).popover('hide');
    }
  });
});
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<div class="container" style="width:400px; height:400px; background:#000;padding-top:50px;">
  <a data-placement="top" role="button" class="btn btn-danger" data-toggle="popover" data-content="Popover" data-original-title="" title="">
    Click here
  </a>
</div>

1 个答案:

答案 0 :(得分:0)

得到答案:

<script>
$("[data-toggle=popover]")
 .popover({
  html: true
 });

$('a[data-toggle=popover]')
 .popover();

$(':not(#anywhereonthepage)').click(function(e)

 {
  e.preventDefault()

  $('a[data-toggle=popover]').each(function()

   {

    if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('a[data-toggle=popover]').has(e.target).length === 0) {
     $(this).popover('hide');
     return;
    }
   });
 });
</script>