Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/88.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 如何在查看数据时显示水平滚动条?_Jquery_Html_Css_Tablesorter - Fatal编程技术网

Jquery 如何在查看数据时显示水平滚动条?

Jquery 如何在查看数据时显示水平滚动条?,jquery,html,css,tablesorter,Jquery,Html,Css,Tablesorter,我有大量的数据在表中。每次需要向下滚动的页面和使用滚动条需要看到的数据 我需要一个水平滚动条,上面有我在屏幕上看到的内容 使用此功能,无需向下滚动页面 谢谢你的帮助。没有代码,我能给你的最好答案是 overflow-y: visible 祝你好运 用div将表格括起来 <div class="wrapper"> <table class="tablesorter"> <!-- ... --> </table> </div&g

我有大量的数据在表中。每次需要向下滚动的页面和使用滚动条需要看到的数据

我需要一个水平滚动条,上面有我在屏幕上看到的内容

使用此功能,无需向下滚动页面


谢谢你的帮助。

没有代码,我能给你的最好答案是

overflow-y: visible

祝你好运

用div将表格括起来

<div class="wrapper">
  <table class="tablesorter">
    <!-- ... -->
  </table>
</div>

你能出示你的密码吗
.wrapper {
  overflow-x:scroll;
}