如何只包含 Bootstrap 弹出框功能?
How to only include Bootstrap Popover functionality?
我如何才能只包含来自 Twitter Bootstrap 的弹出窗口功能?我只想在我的应用程序中使用弹出窗口,不想包含 Bootstrap 的任何其他功能。
我添加了以下内容:src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"
然而,当我测试时,弹出窗口 functions/methods 的 none 在我的应用程序中是 executed/recognized。
如有任何帮助,我们将不胜感激。
您需要包含 jquery.js
和 bootstrap.js
,您可以跳过 bootstrap.css
,但您的弹出窗口需要设置样式。您可以使用浏览器开发工具查看需要设置样式的弹出窗口 类。
HTML:
<p>Popover Demo</p>
<a href="#" id="example" rel="popover"
data-content="This is the body of Popover"
data-original-title="Demo">pop
</a>
JS:
$(function () {
$('#example').popover();
});
我如何才能只包含来自 Twitter Bootstrap 的弹出窗口功能?我只想在我的应用程序中使用弹出窗口,不想包含 Bootstrap 的任何其他功能。
我添加了以下内容:src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"
然而,当我测试时,弹出窗口 functions/methods 的 none 在我的应用程序中是 executed/recognized。
如有任何帮助,我们将不胜感激。
您需要包含 jquery.js
和 bootstrap.js
,您可以跳过 bootstrap.css
,但您的弹出窗口需要设置样式。您可以使用浏览器开发工具查看需要设置样式的弹出窗口 类。
HTML:
<p>Popover Demo</p>
<a href="#" id="example" rel="popover"
data-content="This is the body of Popover"
data-original-title="Demo">pop
</a>
JS:
$(function () {
$('#example').popover();
});