使用jQuery添加一些文本

时间:2012-08-01 19:44:18

标签: javascript jquery

我使用jQuery,我有一个带有H2标签的div

<div id="preload"><h2></h2></div>

我想知道如何使用jQuery在<h2> tags

中添加文本

最终结果应为:

<div id="preload"><h2>Some text here</h2></div>

我需要添加文本而不替换jQuery脚本中的标记<h2></h2>

有什么想法吗?非常感谢!

4 个答案:

答案 0 :(得分:8)

尝试这样的事情:

$("div#preload h2").html("Some Text Here")

请参阅上面的示例代码HTML here

答案 1 :(得分:6)

$("#preload h2").text('WOOt Woot');

答案 2 :(得分:4)

使用.text

$("#preload h2").text("Some text here");

这也不是必须在$(document).ready(function () { ... })$(function () { ... })范围内。我会用后者来节省打字。

$(function () {
    $("#preload h2").text("Some text here");
});

答案 3 :(得分:1)

$('#preload h2').html('foo');

OR

$('#preload h2').text('foo');