我想为我的网页使用这个jquery 库。我正在复制文章页面中的所有代码,然后粘贴到我的 .html 文件中,如下所示:
<html>
<head>
<script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script>
<script type="text/javascript">
$("document").ready(function(){
$("#demo img[title]").tooltip();
});
</script>
</head>
<body>
<br />
<br />
<div id="demo">
<img src="image1.jpg" title="The tooltip text #1"/>
<img src="image2.jpg" title="The tooltip text #2"/>
<img src="image3.jpg" title="The tooltip text #3"/>
<img src="image4.jpg" title="The tooltip text #4"/>
</div>
</body>
</html>
但是 .tooltip 类样式没有运行。我看不到背景图像和其他图像。我需要如何编辑我的 .html 文件?
另外,如果我想更改此库的 css 样式,我该怎么办?