jQuery dataTables:无法在 IE 中正确显示 full_numbers 分页
我正在使用 jQuery 插件 DataTables (http://www.datatables.net/) 以及以下内容初始化:
$('#reconcile_table').dataTable( {
'bSort' : true,
'bFilter' : true,
'bSortClasses' : false,
'iDisplayLength' : 200,
'bPaginate' : true,
'sPaginationType': 'full_numbers',
'bProcessing' : true,
'sDom' : '<"top"pf>rt<"bottom"i><"clear"l>'
});
我使用带有样式的“full_numbers”分页。使用我的 CSS 样式代码,它在 Firefox 中看起来不错,但在 IE 中,分页导航按钮被简化为一条条,就像它们被某种方式剪掉了一样。
由于我是新用户,所以我无法使用图像,所以我有点卡在那里进一步解释自己。任何关于 IE 中发生的事情的帮助将是非常感激的,因为我自己无法弄清楚! :)
谢谢, 道格
I'm using the jQuery plugin DataTables (http://www.datatables.net/) with the following initialization:
$('#reconcile_table').dataTable( {
'bSort' : true,
'bFilter' : true,
'bSortClasses' : false,
'iDisplayLength' : 200,
'bPaginate' : true,
'sPaginationType': 'full_numbers',
'bProcessing' : true,
'sDom' : '<"top"pf>rt<"bottom"i><"clear"l>'
});
I'm using the 'full_numbers' pagination with styling. With my CSS styling code it looks good in Firefox, but in IE the paging navigation buttons are reduced to just a sliver, like they've been clipped somehow.
I can't use an image as I'm a new user, so I'm kinda stuck there to explain myself further. Any help about what's going on in IE would be most appreicated, as I can't figure it out myself! :)
Thanks,
Doug
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
...迟到总比不到好;我认为你的 CSS 中的“padding”属性可能有错误。 IE 处理填充的方式与 FF 非常不同,尤其是当它认为元素为“空”时。
尝试向 CSS 中的分页链接添加宽度和高度属性。希望对您有所帮助。
... better late than never; I think you may have an error with your "padding" properties in the CSS. IE handles padding very differently to FF, especially if it thinks the element is "empty".
Try adding a width and height attribute to the pagination links in your CSS. Hope that helps you out.