Unescape apostrophe (') in JavaScript?

后端 未结 2 2047
囚心锁ツ
囚心锁ツ 2021-01-13 08:25

I\'m trying to unescape a HTML-escaped apostrophe (\"'\") in JavaScript, but the following doesn\'t seem to work on a devtools console line:

         


        
2条回答
  •  [愿得一人]
    2021-01-13 08:53

    unescape has nothing to do with HTML character entities. It's an old, deprecated function for decoding text encoded with escape, which is an old, deprecated function for encoding text in a way that is unlikely to be useful in the modern world. :-)

    If you need to turn that HTML into plain text, the easiest way is via an element:

    var div = document.createElement('div');
    div.innerHTML = "'";
    alert(div.firstChild.nodeValue);
    

    Live Example | Live Source

    Note that the above relies on the fact that there are no elements defined in your HTML text, so it knows there is exactly one child node of div, which is a text node.

    For more complicated use cases, you might use div.innerText (if it has one) or div.textContent:

    var div = document.createElement('div');
    div.innerHTML = "'";
    alert(div.innerText || div.textContent || "");
    

    Live Example | Live Source

提交回复
热议问题