这可能是一个非常愚蠢的问题。 我喜欢boostrap并使用CSS样式很长一段时间,但是当我尝试使用他们的任何JS东西时,它对我来说都不起作用。
我总是确保我的标签中有这个但仍然
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
看起来我完全失明了,或者我不知道我总是做错什么。是否有人可以帮助我?
感谢。
示例代码:
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Audatex History</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
</body>
</html>
答案 0 :(得分:1)
你缺少JQuery
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
注意:在引导程序JS之前包含它。
您必须初始化
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
</script>
注意:在结束标记头之前包含它。
答案 1 :(得分:0)
Bootstrap依赖于jQuery。在包含引导程序JS之前包括它。