使用Jquery.text()</p>时,<p>标记内的换行符

时间:2010-12-11 19:34:30

标签: jquery html jquery-ui

我正在尝试做这样的事情:

<p> Line 1 <br/> Line 2 <br/> </p>

这不起作用,但我正在尝试做什么?

修改:更多信息

我正在执行以下代码:$("#textDialogBox").text("test<br />test2");

其中#textDialogBox<p id = "textDialogBox">This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>

但是当我打开对话框时,左图显示为文本,而不是换行符。

1 个答案:

答案 0 :(得分:57)

请改为:

$("#textDialogBox").html("test<br/>test2");

jQuery的text()方法将“销毁”给它的任何HTML,这也包括<br />