w2utils.escapeId
更新日: 2018-09-07
escapeId(id)
jQueryで使用するidをエスケープします。 戻り値はstring
です。
- id: string
- エスケープするid
説明
jQueryで!"#$%&\'()*+,./:;<=>?@[\]^`{|}~ =>
を含む要素idを使いたい場合に、それらの文字をエスケープします。
以下のように指定することができます。
var a = w2utils.escapeId('id.with.levels and spaces');
console.log(a);
デモ
エスケープしたid文字列を使って要素のテキストを取得し、 console.log
に出力します。
JavaScript
var id = w2utils.escapeId('id.with.levels and spaces');
console.log($('#'+id).text());
HTML
<span id="id.with.levels and spaces">デモ用文字列</span>
© 2017. .
Code licensed under theMIT License. Documentation licensed underCC BY 3.0.
このコンテンツはvitmalinaによるw2ui.utilsドキュメントを翻訳/改変したものです。