我正在尝试使用以下代码将换行符添加到我从xml页面加载的文本行中:
$("#questionNumber").text(questionInARow).append('<br>');
文本加载正常,但附加被忽略。 我也试过这个:
$("#questionNumber").text(questionInARow).html("<br>");
同样被忽略了。 我的语法错了,或者我的方法不好?
提前谢谢。
答案 0 :(得分:1)
<强>标记强>
<div id='temp'></div>
<强> JS 强>
$('#temp').text("hello").html($("#temp").html() + "<br/> how do you do? "); //This is one way
$('#temp').html("hello").append("<br/> how do you do?"); //Yet another way using the 'append' method.
<强> Fiddle 强>
答案 1 :(得分:1)
答案 2 :(得分:0)
似乎
<br/>
是一个标签。但是你使用了jQuery的.html()和.append()方法,它们都将内容插入到内容节点中。