我有一个文本区域,里面有一些 xml。我想将此 xml 复制到另一个地方的 div 中。
例如xml
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
我正在尝试以下:
$('#divId').text($('#area').val());
它在 Firefox 和 chrome 中运行良好。IE 似乎失去了换行符。
导致 IE
<note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>