easyui在tab选项卡 不显示滚动条 取消右侧滚动条

解决方法:在被引入的页面嵌套外一个小于父页面大小的div,并添加滚动条

<div style="overflow:auto;height: 99.5%;">

拼接iframe的话 

'<iframe scrolling="no" frameborder="0"  src="'
				+ url
				+ '" style="width:99.5%;height:99.5%;"></iframe>'

有空白

 

 

或者

<style type="text/css">
	
	#tabs .tabs-panels>.panel>.panel-body {
		overflow: hidden;
	}
</style>

转载自

https://blog.csdn.net/qq_38686665/article/details/79152490

 

 

posted @ 2018-07-23 18:05  grj001  阅读(280)  评论(0编辑  收藏  举报