我在一些非常严格的包端限制范围内工作,并且有一个客户对他的要求毫不留情,所以我被迫在 .js 中做一些我不想做的事情。
不管怎样,就到这里吧。
我有客户评论。在这些评论的结尾,我有“-美国”或“-澳大利亚”。基本上,在每次评论结束时,我都有“- [位置]”。我需要将该字符串从评论文本中拉出,然后将其插入到跨度中。我正在使用 jQuery,所以我想坚持下去。
我已经整理好如何遍历每条评论并将其插入到我需要的地方,但我还没有弄清楚如何从每条评论中获取该文本字符串,然后将其从每条评论中删除。那是我真正需要一些帮助的地方。
示例文本:
<div class="v2_review-content">
<h4>These earplugs are unbelievable!</h4>
<p class="v2_review-text">These are the only earplugs I have ever used that completely block out annoying sounds. I use them at night due to the fact I am an extremely light sleeper and the slightest noise will wake me up. These actually stick to the ear in an airtight suction and do not come out at all until I pull them off in the morning. These are as close to the perfect earplug as you can get! - United States</p>
<p class="v2_review-author">Jimmy, March 06, 2013</p>
</div>
如果有帮助,我也有 underscore.js 可用。