我想在不丢失 ASCII 字符的情况下将带有 CR 和制表符的文本(假设代码在 var shtml中)显示到 iframe 中。
<!--var shtml-->
<HEAD>
</HEAD>
<BODY style="FONT-SIZE: 12.5pt">
mmm
</BODY>
我的 iframe
<iframe rows="5" cols="60" id="tahtml">
</iframe >
我的JS
document.getElementById('tahtml').textContent = shtml; //innerText = shtml;
如果我使用 . innerText然后代码(shtml)在 Firefox 中解释。如果我使用 . textContent代码(shtml)不显示 ASCII 字符。jQuery . text()与 .textContent 相同。