我想翻译像这样的API
的输入 <p>Communication that doesn’t take a chance doesn’t stand a chance.</p>
这样的事情
&#34;没有机会的沟通没有机会。&#34;
我知道html可以翻译这个,但我不知道如何直接翻译这个用于javascript
答案 0 :(得分:0)
将其作为HTML插入元素,然后将其作为文本读回。
var elt = document.createElement('div');
elt.innerHTML = apiResponse;
alert(elt.textContent);