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 });
,イベント名の間に があってはなりません
,
$('selector').on('change keyup', function() { // some code });