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.
ユーザーが 01022013 形式を入力し、onchange で日付形式に変換するフォームを作成したいと考えています。同様に onfocus は数値形式にする必要があります。助けてください。
これを試して:
'01022013'.replace(/(\d{2})(\d{2})(\d{4})/, '$1/$2/$3') // -> "01/02/2013"