2014-07-17 39 views
3

我使用的是SPAN作爲酥料餅 :HTML格式的量程數據容器的引導酥料餅

<div class="col-xs-2 pull-right"> 
    <span class="icon-help tooltip-help pull-right" data-container="body" data-toggle="popover" data-placement="bottom" data-content="<b>This</b> is Photoshop's version of Lorem Ipsum..." data-trigger="hover"> 
    </span> 
</div> 

我想用HTML格式數據內容的字符串。它似乎不允許格式化。有沒有數據容器設置可以讓我用HTML格式化數據內容?

+0

你爲什麼不把'內的實際內容',而不是試圖去描述它的數據屬性? –

回答

1

我注意到你正在使用Bootstrap(pull-leftdata-toggle="popover"等)。

看着popovers有一個html配置選項用於呈現HTML而不是文本。

Name Type Default Description 
html boolean false Insert HTML into the popover. If false, jQuery's text method will be used to insert content into the DOM. Use text if you're worried about XSS attacks. 

使用data-html="true"和嘗試:

<span data-toggle="popover" data-container="body" data-placement="bottom" data-html="true" data-content="<b>This</b> Lorem Ipsum..." data-trigger="hover">