1

私は簡単なコードを持っています:

//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>   
4

1 に答える 1

0

val()に慣れている

一致した要素のセットの最初の要素の現在の値を取得します

html()代わりにユーザー

$('#copyPreview').html($('#copyText').html())
于 2013-05-14T20:30:52.580 に答える