English 中文(简体)
不同浏览器的关键代码? j 质量
原标题:Key codes in different browsers? jQuery

我发现,在关键代码方面,不同网络浏览器之间有不一致之处。

我有以下法典,在Safari、Ros和Khatin等地,但不是在Randrein。

页: 1

Here are two code snippets where the problem occurs:

1 P-4, 1 P-3, 1 FS, 1 NS

// Post something
$( #postDiv ).on( keydown ,  #posttext , function(e) {
    if ((e.keyCode == 13 || e.which == 13) && !event.shiftKey) {
        post($(this));
    }
});
// Comment on a post
$( .commenttext ).live( keydown , function(e) {
    if ((e.keyCode == 13 || e.which == 13) && !event.shiftKey) {
        comment($(this));
    }
});

这两项职能甚至都没有。

我只用<代码>e.,即做了一些更多的测试,并且注意到,当我离开<代码>和&andamp; !event. transKey。 - 显然,Don't知道这一指挥。 是否有其他选择? 我希望用户能够在没有提交职位的情况下打上Shift+Enter。 我已经尝试了<代码>if(即=13 && e. !=16),但没有结果。

Solution

首先,大家感谢你们的回答! 当然,它必须成为<条码>e. transKey,而不是<条码>。 如今,它在所有浏览器中运作(我唯一尝试过的是互联网探索者)。

最佳回答

From http://api.jquery.com/event.which/

The event.which property normalizes event.keyCode and event.charCode. It is recommended to watch event.which for keyboard key input.

你们不需要使用钥匙。 《法典》和你可能会遇到这样的问题,即:! 法典的确如此。 在把钥匙Code评价从你的控制结构中删除之后,你是否继续核实这一问题?

问题回答

页: 1 并且你对所有浏览器都罚款:

http://api.jquery.com/event。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签