ifame 스크롤 막대 제거
function changeframe()
{
var workspace = document.getElementById('workspace');
var navigator = getOs();
// 。
(document.documentElement && document.documentElement.scrollTop)?document.documentElement.scrollTop=0 : document.body.scrollTop=0;
if("Firefox" == navigator)
{
alert(workspace.height);
alert(workspace.width);
workspace.height=window.frames["workspace"].document.body.scrollHeight;
workspace.width=window.frames["workspace"].document.body.scrollWidth;
alert(workspace.height);
alert(workspace.width);
}
else
{
// alert(workspace.style.height);
// alert(workspace.style.width);
//alert('window.frames[workspace].document.body.scrollTop'+window.frames["workspace"].document.body.scrollTop);
alert('window.frames[workspace].document.body.scrollHeight'+window.frames['workspace'].document.body.scrollHeight);
alert('workspace.document.body.scrollHeight'+workspace.document.body.scrollHeight);
var height = window.frames['workspace'].document.body.scrollHeight;
// allPrpos(document.getElementById('content-container').style);
document.getElementById('regionB').style.height = height+100;
// allPrpos(document.getElementById('regionB').style);
workspace.style.height = height;
workspace.style.width=window.frames['workspace'].document.body.scrollWidth;
// allPrpos(workspace.style);
document.documentElement.scrollTop = 0;
alert(workspace.style.height);
alert(workspace.style.width);
}
}
function allPrpos(obj) {
var props = "";
for(var p in obj){
if(typeof(obj[p])=="function"){
obj[p]();
}else{
props+= p + "=" + obj[p] + "\t";
}
}
alert(props);
}
function getOs()
{
var OsObject = "";
if(navigator.userAgent.indexOf("MSIE")>0) {
return "MSIE";
}
if(isFirefox=navigator.userAgent.indexOf("Firefox")>0){
return "Firefox";
}
if(isSafari=navigator.userAgent.indexOf("Safari")>0) {
return "Safari";
}
if(isCamino=navigator.userAgent.indexOf("Camino")>0){
return "Camino";
}
if(isMozilla=navigator.userAgent.indexOf("Gecko/")>0){
return "Gecko";
}
}
그런데 만약에 iframe에 iframe를 끼우면 어떡하지?첨부 파일 보기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Firefox 애드온을 직접 게시(self hosted)하는 방법Firefox 확장 프로그램을 게시하려는 경우 상점에 신청하고 게시하는 것이 일반적인 방법이지만 게시 조건을 충족해야 합니다. 예를 들어, 사내 응용 프로그램을 사용하여 직원만이 사용하는 확장 기능의 경우, 용도와 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.