我是 Tooltipster 函数的初学者以下是我的代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>attr demo</title>
<style>
div {
color: red;
font-size: 24px;
}
</style>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script type="text/javascript" src="js/jquery.tooltipster.min.js"></script>
<script>
$(document).ready(function() {
$('.tooltip').tooltipster();
});
</script>
</head>
<body>
<div id="my-tooltip">
This div has a tooltip with HTML when you hover over it!
</div>
<script>
$(document).ready(function() {
$( ".my-tooltip" ).tooltip({ content: "Awesome title!" });
alert("dsad");
});
</script>
</body>
</html>
但输出仅显示以下内容:
当您将鼠标悬停在该 div 上时,它有一个带有 HTML 的工具提示!
同样在控制台中,第 30 行有错误:$( ".my-tooltip" ).tooltip({ content: "Awesome title!" });
Uncaught TypeError: undefined is not a function
请帮忙!!!如何使用工具提示功能并使用它们..?