私は動作する次のjQueryシェルを持っています:
$('.jq_noSpaces').on('change', function(){
alert('you changed the value in the box');
});
私のフォーム属性はid="username" name="username"
次のjQuery置換関数を使用して、入力フィールドからスペースを自動的に変更して削除するにはどうすればよいですか?
str.replace(/\s+/g, '');
ありがとう