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.
コンマ区切りの電話番号マスク入力用の適切なプラグイン (おそらく jQuery) を知っている人はいますか?
多くのマスク入力プラグインがありますが、複数値フィールド用のプラグインが見つかりません。
たぶん、あなたは自分でそれを行うことができました。
.change() jQuery イベントのみを操作する必要があります。
$( ".target" ).change(function() { $text = $(this).text(); /*DO SOME STUFF*/ $(this).text($text); });
.change() イベントの詳細については、こちらをご覧ください。
.text() 関数の詳細については、こちらをご覧ください。