Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
                            
                                
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        2年前关闭。
                                                                                            
                
        
我想在按键事件上实现,但此方法不起作用。
我进行了搜索,但没有找到合适的解决方案。

$('body').on('Keypress', '.bCode', function (event)


但是这种模糊代码效果很好:

$('body').on('blur', '.bCode', function (event)

最佳答案

用按键代替按键。按键应该小写。

$('body').on('keypress', '.bCode', function (event)

09-19 18:54