这是我的 HTML,首先<div id="tablebody">
,我使用了一个脚本,该脚本在这些 div 中附加了一个<tr>
内容,该 div 的 css 属性为“ overflow:auto
”。
一旦内容溢出内部,默认情况下总是出现滚动条,这应该是mCustomScrollbar
我调用的脚本中自定义的滚动条。
我不知道如何让它触发 div 的滚动条..
<html>
<head>
<title>Admin</title>
<link rel ="stylesheet" type="text/css" href="css/admin.css"/>
<link rel="stylesheet" type="text/css" href="jquery.mCustomScrollbar.css"/>
<script src="js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.10.2.custom.js"></script >
<!--script of the plugin-->
<script src="jquery.mCustomScrollbar.concat.min.js"></script>
<script>
(function($){
$(window).load( function(){
$('#tablebody').mCustomScrollbar({
scrollButtons:(enable:true),
autoHideScrollbar:true
});
});
)}(jquery);
</script>
</head>
<body>
<div id="tablebody"> <!--css{overflow:auto}-->
<table id="inv_data">
<tbody id="data_content"></tbody> <!--appending <tr>-->
</table>
</div>
</body>
</html>