用frontpage自己做个例子就明白了

解决方案 »

  1.   

    use disabled and title attribute, for example:<a href="http://www.csdn.net" title="doesn't support yet" disabled >CSDN</a>
    <img src="zip.gif" title="doesn't support yet" onclick="location.href='http://www.csdn.net';" disabled>
    <script language="javascript">
    function document.onclick()
    {
      if (event.srcElement.disabled)
       return false;
    }
    </script>
      

  2.   

    最简单的方法
    <a href=# title="你要提示的内容">一些文字</a>
      

  3.   

    我同意楼上的的用TITLE来设置
      

  4.   

    如果是图片,则用<img src='' alt='用这个就可以了'>
    如果要在文本上加提示,则楼上的title属性没错