IE 下自动滚动条挡住 div内容

本文介绍了一种解决IE浏览器中表格内容超出宽度时自动滚动条显示问题的方法,通过使用jQuery实现了滚动条的自适应调整,并确保了不同版本IE下的正常显示。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>IE下横向内容超出宽度,自动滚动条也不会挡住表格内容</title>
<style type="text/css">
.tablebox{width:500px; overflow:hidden;  margin-left:0px; margin-top:0px; position:relative; z-index:0;}
.dy{border:1px solid #999999; min-width:500px;  border-bottom:none; margin-top:11px;}
.dy td{text-overflow:ellipsis; word-break:keep-all; white-space:nowrap; }
 
.dy_top{height:32px; background:#E3E3E3; border-right:1px solid #ffffff; width:136px; text-align:center; line-height:32px; font-weight:bold;}
.dy_td{border-bottom:1px solid #a1a1a1; height:31px; text-align:center; line-height:31px;}

</style> 
<script type="text/javascript" src="http://localhost:9086/inc/script/jquery1.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
	var addHeight = 0;
	if($("#j_tablebox").get(0).scrollWidth > $("#j_tablebox").get(0).offsetWidth)
		addHeight = 18;
	$("#j_tablebox").css("height",($("#j_tablebox").get(0).scrollHeight+addHeight)+"px");
	$("#j_tablebox").css("overflowY","hidden");
	$("#j_tablebox").css("overflowX","auto");
});
</script>
</head>

<body>  
<div class="tablebox" id="j_tablebox">
<table border="0" class="dy" cellspacing="0" cellpadding="0">
<!-- 表头 -->
	<tr>
		<td class="dy_top">L1</td>
		<td class="dy_top">L2</td>
		<td class="dy_top">L3</td>
		<td class="dy_top">L4</td>
	</tr>
	<tr>
		<td class="dy_td">fdsafdsafdsa</td>
		<td class="dy_td">fdsafdsaffdsafdsafdsafdsafdsafdsafdsafdsafdsa</td>
		<td class="dy_td">fdsafdfdsafdsafdsadsa</td>
		<td class="dy_td">fdsafdsa</td> 
	</tr>
</table>
</div> 
</body>
</html>


 

在正常情况下,overflow:auto; 在IE5,IE6,IE7以下,是被挡住表格内容的;IE8以上正常;

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值