2013-10-21 138 views
0

我面臨着一些誤差與Twitter的引導酥料餅的例子Twitter的引導酥料餅的錯誤

HTML

<h1>Popover</h1> 
<a href="#" id="example" class="btn btn-primary" rel="popover" 
    data-content="This isthe body of Popover" 
    data-original-title="Creativity Tuts"> 
</a> 

包含的腳本標籤

src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" 
src="js/bootstrap.js" 
src="js/Tooltip.js" 
src="js/Popover.js" 

我的JavaScript

$(function() { 
    $('example').popover(); 
}); 

我下載了以下庫:

  • bootstrap.js
  • bootstrap.min.js
  • popover.js
  • tooltip.js

但代碼仍然不起作用

+0

你並不需要包括每個引導js文件,如果單獨您已納入[bootstrap.js(HTTP的元素:// netdna .bootstrapcdn.com /引導/ 3.0.0/JS/bootstrap.min.js)。不過,@阿倫P Johny,是正確的。看到這個[**'fiddle' **](http://jsfiddle.net/KyleMit/VUZhL/)的工作示範 – KyleMit

回答

4

example是id或目標元素,因此您需要使用id selector(前綴#)。您的選擇(element selector)查找與標籤名稱example<example ...>...</example>

$('#example').popover();