Firefox 和 Firefox 的问题IE8 不显示图像映射的鼠标悬停替代文本

发布于 2024-08-07 02:33:50 字数 765 浏览 6 评论 0原文

我有以下 HTML:

<div style="position: relative; text-align: left;">
<img id="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181_BaseImage" src="chart.gif" width="460px" height="240px" usemap="#chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181" border="0">

<map name="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181">
<area shape="poly" alt="Second Dot" coords="256,51,259,48,256,45,253,48"></area>
<area shape="poly" alt="First Dot" coords="183,51,186,48,183,45,180,48"></area>
</map>
</div>

使用 IE7 时,当我将鼠标悬停在图表上的区域上时,Alt 文本(“第一个点”和“第二个点”)会正确显示为工具提示,但在使用 Firefox 或 IE8 时不会显示。

有什么想法吗?

示例可以在此处查看

I have the following HTML:

<div style="position: relative; text-align: left;">
<img id="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181_BaseImage" src="chart.gif" width="460px" height="240px" usemap="#chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181" border="0">

<map name="chart_6c544b37_ac9d_49ed_912e_5ff8ad6c0181">
<area shape="poly" alt="Second Dot" coords="256,51,259,48,256,45,253,48"></area>
<area shape="poly" alt="First Dot" coords="183,51,186,48,183,45,180,48"></area>
</map>
</div>

The Alt texts ("First dot" and "second dot") show correctly as tooltips when I hover over the areas on the graph when using IE7, but they do not show when using Firefox or IE8.

Any ideas why?

The example can be seen here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云之铃。 2024-08-14 02:33:50

属性alt仅在图片无法加载时显示。请改用 title 属性。

The attribute alt is only displayed when the the image can not be loaded. Use the title attribute instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文