jquery 设立页面iframenei的body样式

jquery 设置页面iframenei的body样式
jquery 设置页面iframenei的body样式
$("#tab5").click(function(){		
		var link = 'url';
		var iframe = document.getElementById("contentWindow");
		$("#contentWindow").attr("src",link);
		if (iframe.attachEvent){
		    iframe.attachEvent("onload", function(){
		    	$("body",$("#contentWindow").contents()).css("overflow","hidden");
			});
		} else {
		    iframe.onload = function(){
		    	$("body",$("#contentWindow").contents()).css("overflow","hidden");
			};
		}
});