我有不同的句子,其中都有双引号,例如:
<h3 class="myClass">Sentence one "ends like this"</h3>
<h3 class="myClass">Sentence two"ends like that"</h3>
<h3 class="myClass">Sentence three "another ending"</h3>
全部在一个页面上。基本上所有的值都是不同的,我试图在双引号之前换行,所以它会像
<h3 class="myClass">Sentence one <br/>"ends like this"</h3>
<h3 class="myClass">Sentence two <br/>"ends like that"</h3>
<h3 class="myClass">Sentence three <br/>"another ending"</h3>
老实说,在 split 和 text 之间应该使用哪个 jQuery 函数,我有点困惑?任何帮助将不胜感激,我需要了解如何做到这一点......非常感谢!