<input>要素の maxlength を絵文字にも対応させる
サロゲートペア文字列に対する対応が、最近の JS では意外と簡単にできるようになっていたので覚え書きです。
ちなみに IE は非対応なので、IE 対応が必要な方は本気を出してください。
[追記] タイトルが微妙に嘘をついてました。maxlength
は使わずに、最大入力文字数の制御をします。
サロゲートペア文字列を正しくカウントする
NO GOOD
'𥹖𥹢𥹥'.length // 6
'𥹖𥹢𥹥'.split('').length // 6
OK
[...'𥹖𥹢𥹥'].length // 3
Array.of(...'𥹖𥹢𥹥').length // 3
'𥹖𥹢𥹥'.match(/./ug).length // 3
参考までに、以下は<input>
要素にサロゲートペア文字列を入力すると、maxlength
が正しく動作しない問題を、このやり方を使い改善したサンプルです。Vue でコンポーネント化しています。
See the Pen TextInput by Eiji Meguro (@megurock) on CodePen.
サロゲートペア文字列の文字コードを正しく取得する
String.prototype.charCodeAt() の代わりに、String.prototype.codePointAt() を使います。
NO GOOD
'𥹖'.charCodeAt(0) // 55383
OK
'𥹖'.codePointAt(0) // 155222
サロゲートペア文字列を文字コードから正しく表示する
String.fromCharCode() の代わりに、String.fromCodePoint() を使います。
NO GOOD
String.fromCharCode(155222) // "幖"
OK
String.fromCodePoint(155222) // "𥹖"
Author And Source
この問題について(<input>要素の maxlength を絵文字にも対応させる), 我々は、より多くの情報をここで見つけました https://qiita.com/megurock/items/7f3133a79a1dcb193c1d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .