2013-10-26 125 views

回答

2

您可以使用帶有標題屬性的圖像映射來保存鼠標懸停工具提示。 像這樣:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> 

<map name="planetmap"> 
    <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm" title="sun"> 
    <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm" title="mercury"> 
    <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm" "title="venus"> 
</map> 

您可以使用this page測試。只需將標題屬性添加到代碼中即可。

+0

但我喜歡在div中顯示信息。 – user1601973

+0

然後你需要javascript才能做到這一點。 –

+0

您可以在這裏查看jQuery UI的工具提示示例:http://jqueryui.com/tooltip/ –

相關問題