📄 resizepage.js
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -