请教下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"
});
});

这种内部的弹窗就不会随着左右滚动条一起滚动,怎么解决好呢?

QQ截图20150805232828.jpg
已邀请:

rew1011

赞同来自:

在做编辑表格的插件吗?
http://www.datatables.net
111.png

表格和编辑功能这个插件里都有。

要回复问题请先登录注册