0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptでエスケープ処理したい

Posted at

やりたいこと

HTMLのフォームから送られてきた文字列を変数に格納し、それをinnerHTMLに挿入し、HTMLに反映させたい。

  1. HTMLのフォームに<u>アンダーライン</u>と入力
  2. JavaScriptの変数に格納
  3. innerHTMLなどで変数の中身をページに表示

発生する問題

<u>アンダーライン</u>
と表示したいが

アンダーライン
 ̄ ̄ ̄ ̄ ̄ ̄ ̄
と表示される。

コード

//フォームから変数に格納時に使用
function deEsc(str){
  str=str.replace(/'/g, "\'");
  str=str.replace(/"/g, '\"');
  str=str.replace(/&lt;/g, "\<");
  str=str.replace(/&gt;/g, "\>");
  str=str.replace(/&amp;/g, "\&");
  return str;
}

//変数をinnerHTMLなどで表示するときに使用
function enEsc(str){
  str=str.replace(/'/g, "&#39;");
  str=str.replace(/"/g, '&quot;');
  str=str.replace(/</g, "&lt;");
  str=str.replace(/>/g, "&gt;");
  return str;
}

以下解説
deEscはフォームから受け取った文字を変数に代入する際に使う。
enEscはinnerHTMLに挿入する際に使う。
環境によって\が¥になる場合がある。

いつも汚くてすんません。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?