我想替换标题中的“the”、“and”等关键字,并将其替换为标题标签中的跨度。
前任:
<h2>This is the heading</h2>
成为
<h2>This is <span>the</span> heading</h2>
谢谢你的帮助
更新
我发现了一些适合我想要的东西:
$(function() {
$('h2').each(function(i, elem) {
$(elem).html(function(i, html) {
return html.replace(/the/, "<span>the</span>");
});
});
});