本文介绍了Twitter Bootstrap Popover错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在使用Twitter bootstrap popover示例时遇到了一些错误
I am facing some error with twitter bootstrap popover example
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
但是代码仍然不起作用
推荐答案
example
是ID或目标元素,因此您需要使用 id选择器(前缀#
).您的选择器(元素选择器)查找标签名称为example
的元素,例如<example ...>...</example>
example
is the id or the target element, so you need to use id selector(prefix #
). Your selector(element selector) looks for an element with tag name example
like <example ...>...</example>
$('#example').popover();
这篇关于Twitter Bootstrap Popover错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!