Netscape's DOM is not as flexible as IE's DOM1. use document.getElementsByName("stone")[0]2. A tag does not support a click() method

解决方案 »

  1.   

    1。但是在IE里怎么就可以?
    2。是不是NETSCAPE根本就不支持这种用法?
    3。有没有替代方法?谢谢!
      

  2.   

    1. because Netscape's DOM is different from IE's DOM
    2. in Netscape, <A href="..."> does not support click() method
    3. replace
    stone.click(); 
    with
    location.href="#124";
      

  3.   

    I got it, thanks very much!