<!DOCTYPE html>
<html lang="en">
<head>
\t <title>Bootstrap Example</title>
\t <meta charset="utf-8">
\t <meta name="viewport" content="width=device-width, initial-scale=1">
\t <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
\t <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.js"></script>
\t <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.js"></script>
</head>
<body>
\t <div class="container">
\t \t <h3>Tooltip Example</h3>
\t \t <a data-toggle="tooltip" title="Hooray!">Hover over me</a>
\t </div>
\t <script>
\t $(document).ready(function(){
\t \t $('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="tooltip"]').off("mouseenter mouseleave");
\t \t $('[data-toggle="tooltip"]').tooltip();
\t });
\t </script>
</body>
</html>
爲什麼我不能夠得到提示,即使我初始化兩次?
工具提示組件是jQueryUI的一部分不jQuery的:由於下面的行的。你也必須導入jQueryUI:http://code.jquery.com/ui/ – Sebastian
@Sebastian不,tooltip是Bootstrap的一部分。 – DavidG
@DavidG我不好,抱歉。我試過你的代碼Mahi,它的工作原理如下:https://jsfiddle.net/R3l4x3/jbkocd0p/ 你的控制檯有任何錯誤嗎? – Sebastian