按键事件在 Mozilla Firefox 中不起作用

发布于 2024-11-14 05:52:32 字数 470 浏览 1 评论 0原文

按键事件在 Mozilla Firefox 中不起作用。 我动态创建了一个表行,其中包含一个文本框,并且该文本框也有一个按键事件。

  var el = document.createElement('input');
           el.type = 'text';
           el.name = 'suggest2';
             el.setAttribute("id",str2); 

             el.setAttribute("onkeypress","additemifenter(this.id)"); 
 cell2.appendChild(el);
row.appendChild(cell2);

在 google chrome 中,调用函数 additemifenter(this.id) 。但在 Firefox 中该函数没有被执行。在 Firefox 中执行此操作的替代方法是什么?

Key press event is not working in Mozilla Firefox.
I have create a table row dynamically with a text boix in it and that text box has a key press event too.

  var el = document.createElement('input');
           el.type = 'text';
           el.name = 'suggest2';
             el.setAttribute("id",str2); 

             el.setAttribute("onkeypress","additemifenter(this.id)"); 
 cell2.appendChild(el);
row.appendChild(cell2);

In google chrome the function additemifenter(this.id) is called. But in firefox that function is not getting executed. What is the alternate way to do this in firefox?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

入怼 2024-11-21 05:52:32

也许末尾的分号会有所帮助

el.setAttribute("onkeypress","additemifenter(this.id);");

,但

为什么不使用标准事件处理模型:

el.onkeypress = function(event){
// functionality
};

或者

el.addEventListener("keypress",function(event){ 
// functionality
},false);

要检查密钥代码,您必须使用以下代码:

var code = (event.keyCode) ? event.keyCode : event.which;

if(code == 13){

}

Maybe the semicolon at the end would help

el.setAttribute("onkeypress","additemifenter(this.id);");

but

why don't you use the standard event handling model:

el.onkeypress = function(event){
// functionality
};

or

el.addEventListener("keypress",function(event){ 
// functionality
},false);

to check the keycode you must use the code:

var code = (event.keyCode) ? event.keyCode : event.which;

if(code == 13){

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文