请教下popover在滚动的div中如何保持固定
<div id="special" style="overflow: scroll;">
<table>
<tr>
<td><input class="my" value="101"/></td>
......
<td><input class="my" value="101"/></td>
</tr>
</table>
</div>
$.each( $(".my") , function(index , item){
var t = $(item);
t.popover({
container: t.parent(), //"body",
content : getContent(),
html : true,
template : getTemplate(),
title : "xxx"
});
});
这种内部的弹窗就不会随着左右滚动条一起滚动,怎么解决好呢?