使用Jquery在特定标记后插入<br/>标记

时间:2014-12-02 13:30:19

标签: php jquery

我正在使用WHMCS计费软件。

http://www.whmcs.com/

我有一个名为cart.php的页面,其中列出了客户选择的产品的所有功能。

    <div class="highlightbox">
<h2>Anonymous VPN - Anonymous VPN - Knight</h2>
<p>As Low as<strong> $8.33/month</strong>
<strong>Best Plan for Heavy Users</strong>
Random IP Address-------------------<strong>YES!</strong>
Ever Changing IP Address-----------<strong>YES!</strong>
US IP Address--------------------------<strong>YES!</strong>
Logging the Sites you Visit.--------<strong>NEVER!</strong>
Super Secure Privacy-----------------<strong>YES!</strong>
Great for P2P---------------------------<strong>YES!</strong>
Super High Speed---------------------<strong>YES!</strong>
Great for Streaming-------------------<strong>YES!</strong>
US Video Services --------------------<strong>YES!</strong>
Runs on Windows -------------------<strong>YES!</strong>
Runs on Mac---------------------------<strong>YES!</strong>
Runs on IOS --------------------------<strong>YES!</strong>
No Overage Charges-----------------<strong>YES!</strong>
Host Servers-----------------------------<strong>No</strong>
<em>Use our Static IP service for hosting servers</em><br/>
<strong>Unlimited Bandwidth-------------------YES!</strong>
.</p></div>

我遇到的问题是其中一些是在一行上,这使得它难以阅读。我想在每个<br />代码后插入</strong>代码。

我无法通过手动更改PHP文件来实现。所以我需要使用jquery。你可以使用jquery在每个关闭强标记后插入一个break标记吗?

你可以在这里看到它的实际效果 http://jsfiddle.net/acdpy0co/

1 个答案:

答案 0 :(得分:3)

您可以使用after()

$('strong').after('<br />');

Updated fiddle