我修改,你告訴我之前preferrably正確的地方這一點。下面是完整的代碼:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js">
<link href="bootstrap.min.css" rel="stylesheet">
<script src="bootstrap.min.js"></script>
</head>
<script>
$('#text').popover()
</script>
<body>
<a id="text" href="#" class="btn btn-link" data-content='I want to visualize this when i click on it !' data-placement="bottom">I see this </a>
</body>
</html>
現在,它讓我看到以下錯誤:TypeError: $(...).popover is not a function
和$('#text').popover()
所以我試圖解決這個加什麼要求,這是新的代碼:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js">
<link href="bootstrap.min.css" rel="stylesheet">
<script src="bootstrap.min.js"></script>
<script src="bootstrap-tooltip.js"></script>
<script src="bootstrap-popover.js"></script>
</head>
<script>
$('#text').popover()
</script>
<body>
<a id="text" href="#" class="btn btn-link" data-content='I want to visualize this when i click on it !' data-placement="bottom">I see this </a>
</body>
</html>
現在沒有錯誤,但它仍然不起作用。
新的嘗試:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<link href="bootstrap.min.css" rel="stylesheet">
<script src="bootstrap.min.js"></script>
<script src="bootstrap-tooltip.js"></script>
<script src="bootstrap-popover.js"></script>
</head>
<script>
$('#text').popover()
</script>
<body>
<a id="text" href="#" class="btn btn-link" data-content='I want to visualize this when i click on it !' data-placement="bottom">I see this </a>
</body>
</html>
好吧,這是一個很大的錯誤,你是對的。但是我做了你傷心的事情,但現在還不行。現在我在firebug的shell中得到這個錯誤:'錯誤:Bootstrap需要jQuery'和'ReferenceError:$未定義''$('#text')。popover()'。但實際上,我看到這個例子在jsfiddle上工作。這怎麼可能? – user2635652
你必須這樣做:include jQuery。在引導腳本之前 – mmjmanders
它還沒有工作。我用完整的代碼回答。 – user2635652