欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IE6下链接a的onclick事件失效的解决办法

程序员文章站 2022-04-27 21:15:12
...

          IE6 下,HTML的链接a标签的onclick事件会不起作用,这是因为IE6内核解释a标签的方式认为href的优先级要高于onclick ,这会造成onclick方法不起作用,如下面代码:

     

      <a onclick="test()" href="javascript:void(0)">test</a>

      <script>function test(){

            alert("hello world!");

       }</script>


      在IE6下你并不会得到hello world!的提示框,如何修改呢?写成下面的样子即可:


      <a href=" javascript:test(); ">test</a>

      <script>function test(){

            alert("hello world!");

       }</script>