marquee 下的元素 onclick事件 在火狐下 未被调用,其他浏览器可以。 怎样才能让其在火狐下兼容。

//修改后代码,

<marquee onclick="aa()" direction='up' LOOP='-1' scrollamount='2' height='230' onmouseover="this.stop()"

onMouseOut="this.start()">
XXX



cellpadding="0" cellspacing="1" class="tb_list">







    <tr style="cursor: pointer;color:#666"   ondblclick="test()">
        <td align="center">001info</td>
        <td align="center">002info</td>
        <td align="center">003info</td>
        <td align="center">004info</td>
        <td align="center">005info</td>
        <td align="center">006info</td>
    </tr>

</table>
</marquee>

function test(){
alert("aa");
}

001002003004005006

<marquee onclick="aa()" direction='up' LOOP='-1' scrollamount='2' height='230' onmouseover="this.stop()"

onMouseOut="this.start()">

我测试了一下 firefox3.6.8可以调用啊 估计是某个地方代码写错了/不兼容 造成不能执行

还有this.stop() 用法不对吧