私は簡単なコードを持っています:
//preview copy as it's being typed
$('#copyText').keyup(function(e){
$('#copyPreview').html($('#copyText').val());
});
ユーザーが html を入力すると、保存したときにどのように表示されるかのプレビューを見ることができます。
However certain tags such as <ul> and <li> are not appearing. Other HTML works such as line breaks, bold, tables, even styles... just not lists (so far, from what I see)
私が確認したように、それはcssではないと想定できます。
サンプルテキスト:
<b>All models are UL recognized <br><b>Important:</b> <br>
<ul><li>Adjustable range from -73 to 316°C (-100 to 600°F)</li>
<li>Resolution sensitivity of -17.7°C</li>
</ul>