我在 jquery 工具提示中遇到问题。我有一个图像,我用坐标划分为五个矩形部分。我的工具提示正在工作,但我没有在我想要的位置获得工具提示。所有工具提示都显示在同一位置。
这是我在单个图像上的多个工具提示的 html 代码。在 Firefox 中不显示任何工具提示或在 Google Chrome 中它在左上角显示所有工具提示。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ciclo</title>
<link rel='stylesheet' href='css/tooltips.css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<!--[if !IE | (gt IE 8)]>!-->
<script src="js/tooltips.js"></script>
<script>
$(function() {
$("#Map a[title]").tooltips();
});
</script>
<style type="text/css">
body{margin:0; padding:0;}
.ciclo_image{height:600px; width:600px; margin:100px auto}
</style>
</head>
<body>
<div class="ciclo_image">
<img src="img/ciclo2.jpg" width="600" height="600" border="0" usemap="#Map" />
<map name="Map" id="Map">
<a href="#" title="Market"><area shape="rect" coords="83,91,193,174" href="#" /></a>
<a href="#" title="Arising"><area shape="rect" coords="333,59,473,153" href="#" /></a>
<a href="#" title="Reprocessing"><area shape="rect" coords="5,318,141,385" href="#" /></a>
<a href="#" title="Collection"><area shape="rect" coords="480,302,578,373" href="#" /></a>
<a href="#" title="Shorting and Trading"><area shape="rect" coords="227,491,379,555" href="#" /></a>
</map>
</div>
</body>
</html>