我正在使用 jQuery,我有一个带有 H2 标签的 div
<div id="preload"><h2></h2></div>
我想知道如何使用 jQuery 在<h2> tags
最终结果应该是:
<div id="preload"><h2>Some text here</h2></div>
我需要添加文本而不替换<h2></h2>
jQuery 脚本中的标签。
有任何想法吗?非常感谢!
我正在使用 jQuery,我有一个带有 H2 标签的 div
<div id="preload"><h2></h2></div>
我想知道如何使用 jQuery 在<h2> tags
最终结果应该是:
<div id="preload"><h2>Some text here</h2></div>
我需要添加文本而不替换<h2></h2>
jQuery 脚本中的标签。
有任何想法吗?非常感谢!
$("#preload h2").text('WOOt Woot');
采用.text
$("#preload h2").text("Some text here");
也不是这必须在$(document).ready(function () { ... })
or之内$(function () { ... })
。我会使用后者,因为它可以节省打字。
$(function () {
$("#preload h2").text("Some text here");
});
$('#preload h2').html('foo');
或者
$('#preload h2').text('foo');