JQuery自动设置IFrame的宽和高

阅读更多

1、JavaScript代码如下:

 

function autoFrameSize(iframe) {
	var _width=$("#"+iframe).contents().find("body")[0].scrollWidth;
	var _height=$("#"+iframe).contents().find("body")[0].offsetHeight;
	$("#"+iframe).height(_height);
	$("#"+iframe).width(_width);
}

 

2、Iframe的调用如下:

 

 

 

 

你可能感兴趣的:(JQuery自动设置IFrame的宽和高)