如何禁用 jquery-easyui 的选项卡滚动
how to disable tabs' scroll of jquery-easyui
浏览器:IE
当我点击jquery-easyui 的选项卡时,总是在右侧滚动。
jquery-easyui 没有提供合适的方法来解决这个问题。
请多多指教,谢谢。
我找到了解决方案。
Here is the soluction source
理论是通过声明本地 css
覆盖 jquery-easyui css
这是前面提到的 link 中的代码片段。
<style type="text/css">
/* Remove the right scroll bar easyui tabs */
#tabs .tabs-panels>.panel>.panel-body {
overflow: hidden;
}
</style>
浏览器:IE
当我点击jquery-easyui 的选项卡时,总是在右侧滚动。 jquery-easyui 没有提供合适的方法来解决这个问题。 请多多指教,谢谢。
我找到了解决方案。 Here is the soluction source
理论是通过声明本地 css
覆盖 jquery-easyui css这是前面提到的 link 中的代码片段。
<style type="text/css">
/* Remove the right scroll bar easyui tabs */
#tabs .tabs-panels>.panel>.panel-body {
overflow: hidden;
}
</style>