我有一个Bootstrap 4 popover
,当我hover-over
我正在工作的Font Awesome
图标时显示,但问题是我需要添加另一个Font Awesome
图标在data-content
中。
这是必须通过JS
完成还是可以直接在data-content
属性中完成
这让我发疯了。
HTML
<i id="orderDetailsInfoIcon" class="fas fa-info-circle fa-lg" data-toggle="popover" data-placement="bottom" data-content="You can remove items added to your cart by clicking the <i class="far fa-times-circle text-danger"></i>." data-trigger="hover"></i>
我已经尝试过转义,但它不想工作
data-content="You can remove items added to your cart by clicking the <i class=\"far fa-times-circle text-danger\"></i>."
还有
data-content =“您可以通过单击“ +” +“。”来删除添加到购物车中的项目。
和其他变体。
我想要这个
在此