Home > アンエスケープ


jQueryを使用したHTMLのアンエスケープ方法

以下に、シンプルで簡単な方法といくつかのコード例を示します。text()メソッドを使用する方法:var escapedHtml = "&lt;p&gt;Hello&lt;/p&gt;"; var unescapedHtml = $("<div/>").html(escapedHtml).text(); console.log(unescapedHtml); // 結果: <p>Hello</p>>>More