<a id-mxh href="http://www.sina.com">test</a>
<input onclick="document.all.mxh.href='javascript:void(0)'" type=button value="失效">

解决方案 »

  1.   

    <a id=mxh href="http://www.sina.com">test</a>
    <input onclick="document.all.mxh.href='javascript:void(0)'" type=button value="失效">
      

  2.   

    所有连接无效:
    <a href="263.net">bbbb</a>
    <script>
    document.onclick=function(){
    if(event.srcElement.tagName=="A")
    return false
    }
    </script>
      

  3.   

    <a href="263.net">bbbb</a>
    <script>document.onclick=new Function('return event.srcElement.tagName!="A"')</script>
     
     
      

  4.   

    <body onclick='return event.srcElement.tagName!="A"'>
    <a href="263.net">bbbb</a> 
      

  5.   

    <a href="JavaScript:doNothing();" function doNothing() {
        return;
     }
      

  6.   

    <a href="javascript:void(0);">失效</a>