我使用jQuery,我有一个带有H2标签的div
<div id="preload"><h2></h2></div>
我想知道如何使用jQuery在<h2> tags
最终结果应为:
<div id="preload"><h2>Some text here</h2></div>
我需要添加文本而不替换jQuery脚本中的标记<h2></h2>
。
有什么想法吗?非常感谢!
答案 0 :(得分:8)
答案 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');