图片上的文字还是图片,加不了超链接。
除非你用flash这样的格式。
如果是网页,可以给图片分区,然后给区域加链接,用Dreamwaver做很简单。
代码类似这样:
<html>
<body>
<p>请点击图像上的星球,把它们放大。</p>
<img src="/i/eg_planets.gif"
width="145" height="126"
usemap="#planetmap">
<map id="planetmap" name="planetmap">
<area shape="rect"
coords="0,0,82,126"
alt="Sun"
href="/example/html/sun.html">
<area shape="circle"
coords="90,58,3"
alt="Mercury"
href="/example/html/mercur.html">
<area shape="circle"
coords="124,58,8"
alt="Venus"
href="/example/html/venus.html">
</map>
<p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>
</body>
</html>
温馨提示:答案为网友推荐,仅供参考