我正在尝试使用 Divi 的定价模块,但希望将“字幕”字段分成两行。通常,我可以在 Divi 字段中添加一个中断标记,它会正常读取它并换行,但由于某种原因,它会吐出这个 html:
<span class="et_pb_best_value">50% of 1st Month's Rent<br />7.5% of Monthly Rent*</span>
我想也许我可以使用 jQuery 添加一个中断标签,但我对 jQuery 不是很熟悉。
这是我最近尝试的,它似乎在网站上根本没有做任何事情:
jQuery('.et_pb_best_value').html(function(_, curr){
return curr.replace(',', '<br />');
});
<span class="et_pb_best_value">50% of 1st Month's Rent,7.5% of Monthly Rent*</span>