bootstrap工具提示在IE中不起作用

时间:2013-08-13 10:49:42

标签: jquery twitter-bootstrap tooltip

我在IE中使用bootstrap,但它不能正常工作

这是我的html页面

<!DOCTYPE html> 
<html lang="en"> 
   <head> 
     <meta charset="utf-8"> 
     <title>Twitter Bootstrap Popover Example</title> 
       <meta name="description" content="This is an example to create Popover with     Twitter Bootstrap.">
  <link href="/twitter-bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet"> 
   </head>
    <body>
     <div class="container">
     <h2>Example of creating Popover with Twitter Bootstrap</h2>
      <div class="well">
     <a href="#" id="example" class="btn btn-success" rel="popover" data-content="It's so simple to create a tooltop for my website!" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
   </div>
      </div>
       <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"> </script>
     <script src="/twitter-bootstrap/twitter-bootstrap-v2/js/bootstrap-tooltip.js"></script>
     <script src="/twitter-bootstrap/twitter-bootstrap-v2/js/bootstrap-popover.js"></script>
 <script>
$(document).ready(function () {
    $("#example").tooltip({
        'selector': '',
        'placement': 'bottom'
    });
    console.log("jimmy");
 });
</script>
</body>
 </html>

在任何版本的IE中运行此任何操作,您将在控制台中收到错误。

  

对象不支持属性或方法&#39;工具提示&#39;

1 个答案:

答案 0 :(得分:0)

似乎删除了指向twitter bootstrap的http链接。它已经不再工作了(过去曾经在历史上工作过一段时间)因为Twitter删除了bootstrap http链接。你应该尝试使用jQuery工具提示。

<强> http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js