我需要在我的页面上找到一个句子并用 span 标签(带有一个类)包装它。
这是我的页面:
<body>
<h1>Home Page</h1>
<p>Welcome to the homepage of the site. Enjoy your stay</p>
</body>
使用 Javascript,我想将 P 内容转换为:
<p><span class="mySpan">Welcome to the homepage</span> of the site. Enjoy your stay</p>