resizepage.js

来自「关于在线聊天的程序,类似于QQ聊天,希望大家喜欢」· JavaScript 代码 · 共 24 行

JS
24
字号
// JavaScript Document for resize parent page
function resizeParentPage(iframeId){
	try{
		if (window.navigator.userAgent.indexOf("MSIE")>=1) { 		//IE 
			parent.document.getElementById(iframeId).style.width=document.body.scrollWidth;
			parent.document.getElementById(iframeId).style.height=document.body.scrollHeight + 10;
		}else if (window.navigator.userAgent.indexOf("fox")>=1) { 	//firefox 
			parent.document.getElementById(iframeId).width=document.body.scrollWidth;
			parent.document.getElementById(iframeId).height=document.body.scrollHeight + 10;
		}
	}catch(e){}
}

function resizePage(iframeId){
	try{
		if (window.navigator.userAgent.indexOf("MSIE")>=1) { 		//IE 
			document.getElementById(iframeId).style.width=document.body.scrollWidth;
			document.getElementById(iframeId).style.height=document.body.scrollHeight;
		}else if (window.navigator.userAgent.indexOf("fox")>=1) { 	//firefox 
			document.getElementById(iframeId).width=document.body.scrollWidth;
			document.getElementById(iframeId).height=document.body.scrollHeigh;
		}
	}catch(e){}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?