当前位置: 代码迷 >> Web前端 >> jquery iframe 自适应高度有关问题
  详细解决方案

jquery iframe 自适应高度有关问题

热度:97   发布时间:2012-11-10 10:48:51.0
jquery iframe 自适应高度问题
<script type="text/javascript">
$(function(){
	$("#workspace").load(function(){
		$(this).height($(this).contents().find("body").attr('scrollHeight')); 
	})
});
</script> 
  相关解决方案