<body onmouseover="if (event.srcElement.tagName=='A' ||event.srcElement.tagName=='IMG') {window.status='';return true}">
<a href="####">kiss</a>
<a href="####">love</a>
<a href="####"><img src="icon/popoever.jpg"></a>
<a href="####"><img src="icon/popoever.jpg"></a>
<a href="####">miss</a>
<a href="####"><img src="icon/popoever.jpg"></a>
<a href="####">jog</a>
</body>

解决方案 »

  1.   

    用“假的”超链接:
    <span onclick="navigate('http://www.csdn.net/')" style="color:blue;cursor:hand" onmouseover="this.style.color='red'" onmouseout="this.style.color='blue'">程序员大本营</span>
      

  2.   

    <body  oncontextmenu="window.event.returnValue=false" onmouseover="if (event.srcElement.tagName=='A' ||event.srcElement.tagName=='IMG') {window.status='';return true}">
      

  3.   

    俺的网站里都是这么用的:<style>
    .ref{
    cursor:hand;
    color:#00f;
    font:12px/13px;
    text-decoration:underline
    }
    .ref_over{
    cursor:hand;
    color:#f0f;
    font:12px/13px;
    text-decoration:underline
    }
    </style><span
    onclick="this.location='http://xxx.com';"
    class=ref
    onmouseover="this.className='ref_over';" onmouseout="this.className='ref';">
    XXXX
    </span>xxx.com 就是你的 URL
      

  4.   

    <a href="tips:你的提示" onclick="navigate('http://www.csdn.net/');return false">程序员大本营</a>