“jquery unescape html” Ответ

jquery unescape html

<script>
var encodedStr = "This is fun &amp; stuff";
var decoded = $("<div/>").html(encodedStr).text();
console.log(decoded);
</script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div/>
Undefined

jquery unescape html

function decodeEntities(encodedString) {
  var textArea = document.createElement('textarea');
  textArea.innerHTML = encodedString;
  return textArea.value;
}

console.log(decodeEntities('1 &amp; 2')); // '1 & 2'
Shadow

jquery unescape html

var encodedStr = "This is fun &amp; stuff";
var decoded = $("<div/>").html(encodedStr).text();
console.log(decoded);


<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div/>
Shadow

Ответы похожие на “jquery unescape html”

Вопросы похожие на “jquery unescape html”

Больше похожих ответов на “jquery unescape html” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования