我正在尝试在 H1 标签中的第一个单词周围插入一个跨度。
不幸的是,标签也可以是链接,并且可以包含类等,例如:
来源 =
<h1>This is a test</h1>
输出 =
<h1><span>This</span> is a test</h1>
来源 =
<h1 class="blah blah"><a href="#">This is a test<a/></h1>
输出 =
<h1 class="blah blah"><a href="#"><span>This</span> is a test<a/></h1>
有没有人在说jQuery之前做过这个?