6

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

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

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

最终结果应该是:

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

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

有任何想法吗?非常感谢!

4

4 回答 4

13

尝试这样的事情:

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

在此处查看示例 HTML 的上述代码

于 2012-08-01T19:45:41.087 回答
7
$("#preload h2").text('WOOt Woot');
于 2012-08-01T19:47:56.343 回答
5

采用.text

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

也不是这必须在$(document).ready(function () { ... })or之内$(function () { ... })。我会使用后者,因为它可以节省打字。

$(function () {
    $("#preload h2").text("Some text here");
});
于 2012-08-01T19:45:59.410 回答
1
$('#preload h2').html('foo');

或者

$('#preload h2').text('foo');
于 2012-08-01T19:45:44.593 回答