事件未在FireFox& FireBug问题

时间:2012-05-23 13:34:54

标签: jquery

我在页面中使用了jquery,一切正常。我正在通过FireFox测试我的页面。当我点击我的页面上的任何位置时,firebug控制台选项卡显示错误消息,如事件未定义和loader_1036.js中的错误,但我没有在页面中包含任何loader_1036.js。我无法理解为什么会出现这种错误。当我点击页面上的任意位置时显示错误消息。

以下例程会导致错误

// set focus to first textbox with in #content div
$('#content input:text:first').focus();
// bypass enter key press on all textbox with in #content div 
//as a result unnecessary postback will not occur.
$('#content input[type=text]').live('keydown', function (e) {
    var keyCode = e.keyCode || e.which;
    if (keyCode == 13) {
        e.preventDefault();
        //$("div[id*=content] input[type=text]").live("");
    }
});

请指导我做什么&如何删除错误。感谢

0 个答案:

没有答案