jQuery .text()不会出现在html中,而是出现在console.log中

时间:2013-11-14 09:03:19

标签: javascript jquery

我有这行代码

$('.bartext').text(percentComplete + "%");

在它呈现的html

<p class="bartext text" style="font-size: 14.020371290794092px;"></p>

但<{p>}的console.log

console.log($('.bartext').text(percentComplete + "%"));

[p.bartext text, prevObject: x.fn.x.init[1], context: document, selector: ".bartext", jquery: "1.10.2", constructor: function…]

outerHTML

"<p class="bartext text" style="font-size: 14.020371290794092px;">100%</p>"

<{1}}

outerText

编辑:整个部分

"100%"

发生了什么事? 谢谢!!! :d

1 个答案:

答案 0 :(得分:0)

使用$('。bartext')。html(percentComplete +“%”);

您确定,percentComplete有一个值 ?