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

Categories

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...