Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
events:{ 'kepressUp input#price': 'submitForm' },
我将如何检测 keypress up ?
当有人在价格部分输入内容时,我想自动提交表单。
kepressUp事件不存在。您可以使用keyup,keydown和keypress
kepressUp
keyup
keydown
keypress
events:{ 'keyup input#price': 'submitForm' },