我正在使用这个工具提示: http: //flowplayer.org/tools/demos/tooltip/index.html
我的 html 文件中有以下几行:
<script src="/javascripts/home.js" type="text/javascript"></script>
<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js" type="text/javascript"></script>
<script type="text/javascript" src="/scripts/jquery.min.js"></script>
<div id="boo">
<img src="image1.jpg" title="this thing is a tool"/>
<img src="image2.jpg" title="this thing is also tool"/>
</div>
我的 home.js 文件中有以下行:
$("#boo img[title]").tooltip();
我的 css 文件中有以下行:
.tooltip {
display:none;
background:transparent url(/tools/img/tooltip/black_arrow.png);
font-size:12px;
height:70px;
width:160px;
padding:25px;
color:#fff;
}
我收到此错误:
Uncaught TypeError: Object [object Object] has no method 'tooltip'
我无计可施。我觉得我完全按照网站上的示例进行了操作,但不知道发生了什么。