|登录 |注册

登录
登录 注册
查看: 878|回复: 1
打印 上一主题 下一主题

js onkeypress 菜鸟问题 !求救~

[复制链接]
兴杰
2013-2-24 06:17 PM
这一段在 firefox 没效果(IE , Google都行 ) !最怕兼容问题了 !求救啊~~

<script type="text/javascript">
    window.document.onkeypress = function() {
        if(event.keyCode == 13 &&
            event.srcElement.tagName.toUpperCase() == "INPUT" &&
            event.srcElement.type == "text") {
            alert(event.cacelBubble);
            event.cancelBubble = true;
            event.returnValue = false;
        }
    }
宅男-兜着走
2013-3-30 04:43 PM
用 Jquery 啊, 能解决兼容性的问题。 只是比较重而已。
您需要登录后才可以回帖 登录 | 注册

回顶部