Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

Remove Word from Paragraph Using Javascript

I'm trying to remove a word from a paragraph using javascript. So far I've written this, but no luck with having it remove the word.

The word I'm trying to remove is S Subheadline space

jQuery(function($) {
   document.body.innerHTML = document.body.innerHTML.replace( 'S

Subheadline space

', "");
});
  <p><span class="excerpt_part"><strong>HANDRAIL</strong>S

Subheadline space

 Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis…</span></p>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There are 2 problems:

  • You're not invoking the function properly (you aren't using jQuery anywhere either - I'd just remove that part entirely)
  • The innerHTML does not contain literal newlines, but backslash characters followed by n:

const spanText = document.querySelector('span').innerHTML;
console.log(spanText);
console.log(spanText.length);
<span>
</span>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...