我有一个显示一些结果的弹出窗口,并且我希望显示一个滚动条,因为结果被切断了(我不希望该弹出窗口过长)。
Answers:
如果要使用jquery添加滚动条,则可以使用以下内容。如果您的div的ID为'mydiv',则可以使用具有CSS属性的以下jquery id选择器:
jQuery('#mydiv').css("overflow-y", "scroll");
<div class="scrollingDiv">foo</div>
div.scrollingDiv
{
overflow:scroll;
}
div
在规范中说过,它没有课程。无论哪种方式,我都删除了我的评论,因为它现已修复。
<head>
<style>
div.scroll
{
background-color:#00FFFF;
width:40%;
height:200PX;
FLOAT: left;
margin-left: 5%;
padding: 1%;
overflow:scroll;
}
</style>
</head>
<body>
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better control of the layout. The default value is visible.better </div>
</body>
</html>