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.
这没有按预期工作。如何使此代码以尽可能少的行工作?
$('selector').on('change, keyup', function() { // some code });
There should not be the , between the event names
,
$('selector').on('change keyup', function() { // some code });