js怎么固定div的大小,并且内容溢出时,显示滚动条
3个回答
展开全部
JS
<script type="text/javascript">
document.getElementById('dd').width="100px";
</script>
内容溢出可以用CSS控制
<style>
#dd{ overflow:auto}
</style>
<script type="text/javascript">
document.getElementById('dd').width="100px";
</script>
内容溢出可以用CSS控制
<style>
#dd{ overflow:auto}
</style>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
document.getElementById("div").style.height=大小;
document.getElementById("div").style.width=大小;
document.getElementById("div").style.overflow="scroll";
document.getElementById("div").style.width=大小;
document.getElementById("div").style.overflow="scroll";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
document.getElementById("div").style.height=200;
document.getElementById("div").style.overflow="scroll";
可以参考下面代码
<body onload="setheight()">
<div id="d">
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
</div>
</body>
<script type="text/javascript">
function setheight()
{
var div=document.getElementById("d")
div.style.width=200;
div.style.height=200;
div.style.overflow="auto";
}
</script>
document.getElementById("div").style.overflow="scroll";
可以参考下面代码
<body onload="setheight()">
<div id="d">
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
<p>12312</p>
</div>
</body>
<script type="text/javascript">
function setheight()
{
var div=document.getElementById("d")
div.style.width=200;
div.style.height=200;
div.style.overflow="auto";
}
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询