The 'charCode' property of a keyup event should not be used. The value is meaningless

后端 未结 6 1562
攒了一身酷
攒了一身酷 2021-01-13 07:42

HTML code:

Days

Jquery code:

$(\'#se         


        
6条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-13 08:14

    That's not an error; it's a warning.

    It's probably generated by code within jQuery that copies the properties of the event object to a wrapper that gets passed to your handler.

    You should ignore it.

提交回复
热议问题