我想在uib-tooltip-html上组合内容,如下例所示
app.controller("testController",function($scope,$http,$interval,$sce) { $scope.text = $sce.trustAsHtml('<div>Some text</div>'); }); <p style="margin-top: 5em;" uib-tooltip-html="<div>text moretext</div>" > A Thing With an HTML Tooltip </p>
解决方法
试试这个
uib-tooltip-html="'<div>'+'text moretext'+'</div>'"
在你的代码里面.