我正在尝试将table
显示为tooltip
的内容。
但是表格似乎没有显示。
这是HTML:
<td>
<a href="javascript:void(0);" data-toggle="tooltip1" class="red-tooltip" title="">5 Users</a>
</td>
表格:
<table id="tooltipContent" border="4" bordercolor="black" cellspacing="1" cellpadding="15px" style="width: 800px; display: none;">
<tr><td>ravi_shrestha(r_sth@gmail.com)</td></tr>
<tr><td>ravi_shrestha(r_sth@gmail.com)</td></tr>
<tr><td>ravi_shrestha(r_sth@gmail.com)</td></tr>
</table>
工具提示初始化:
"fnDrawCallback": function( settings ) {
$('[data-toggle="tooltip1"]').tooltip({
content: $('#tooltipContent').html()
});
},
在title
属性本身中添加内容仍然可以正常工作。
答案 0 :(得分:1)
尝试使用回调函数,正确添加js和css依赖项
$('[data-toggle="tooltip1"]').tooltip({
content: function() { return $('#tooltipContent').html();}
});
$('[data-toggle="tooltip1"]').tooltip({
content: function() {
return $('#tooltipContent').html();
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<td>
<a href="javascript:void(0);" data-toggle="tooltip1" class="red-tooltip" title="">5 Users</a>
</td>
<table id="tooltipContent" border="4" bordercolor="black" cellspacing="1" cellpadding="15px" style="width: 800px; display: none;">
<tr>
<td>ravi_shrestha(r_sth@gmail.com)</td>
</tr>
<tr>
<td>ravi_shrestha(r_sth@gmail.com)</td>
</tr>
<tr>
<td>ravi_shrestha(r_sth@gmail.com)</td>
</tr>
</table>