打印??
是这样吗<img name="mmm" title="这是图片" src="images/main_nn.jpg" width="60" height="36" border="0">如果在图片本身上得用组件

解决方案 »

  1.   

    http://www.duplo.se/Websites/dimac/Website/Products/w3Image可以下载
    “Examples”中有例子安装后试试吧
      

  2.   

    例子http://www.duplo.se/Websites/dimac/Website/Products/w3Image/Examples
      

  3.   

    你用一个层,用dreamweaver中的show-hide layers,不就可以吗?
      

  4.   

    对,用层也可以模拟,但不是真的加在图片上了
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    </head><body>
    <div id="Layer1" style="position:absolute; width:145px; height:69px; z-index:1; left: 23px; top: 3px;"><font color="#FF0000" size="+7"><strong>CSDN</strong></font></div>
    <img src="http://www.csdn.net/images/homeimage/csdn.gif"> 
    </body>
    </html>
      

  5.   

    把图片作为背景就能达到呢的要求!
    <SPAN onmouseover="this.style.backgroundImage='url(sphere.jpeg)'">
    TEST</SPAN>可以用表格定位!
      

  6.   

    可以用绝对定位的层来解决
    具体用LAYER还是DIV无所谓
    重要的是字层的优先级要高于图层
      

  7.   

    <img src="mmm.gif">
    <div style="position:absolute; left:50px; top;40px; z-index:10">
    你的内容
    </div>根据需要改写left及top的值
      

  8.   

    上面的为绝对定位
    也可以用相对定位; 把上面的absolute改为relative