프레임 크기 변경(브라우저 인식 안 함 해결)
2936 단어 브라우저
<frameset name="myFrame" cols="199,7,*" frameborder="no" border="0" framespacing="0" id="myFrame">
<frame src="leftframe.jsp" name="leftFrame" frameborder="no" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="switchframe.html" name="midFrame" frameborder="no" scrolling="No" noresize="noresize" id="midFrame" title="midFrame" />
<frameset rows="59,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="mainframe.html" name="mainFrame" frameborder="no" scrolling="No" noresize="noresize" id="mainFrame" title="mainFrame" />
<frame src="fuwuqi.jsp" name="manFrame" frameborder="no" id="manFrame" title="manFrame" />
</frameset>
</frameset>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/common.css" type="text/css" />
<title> / </title>
</head>
<script language="JavaScript">
function Submit_onclick()
{
alert(window.parent.document.getElementById("myFrame").cols);
if(window.parent.document.getElementById("myFrame").cols == "199,7,*") {
window.parent.document.getElementById("myFrame").cols ="0,7,*";
document.getElementById("ImgArrow").src="images/switch_right.gif";
document.getElementById("ImgArrow").alt=" ";
} else {
window.parent.document.getElementById("myFrame").cols="199,7,*";
document.getElementById("ImgArrow").src="images/switch_left.gif";
document.getElementById("ImgArrow").alt=" ";
}
}
window.onload=function()
{
if(window.parent.location.href.indexOf("MainUrl")>0)
{
window.top.midFrame.document.getElementById("ImgArrow").src="images/switch_right.gif";
}
}
</script>
<body >
<div id="switchpic"><a href="javascript:Submit_onclick()"><img src="images/switch_left.gif" alt=" " id="ImgArrow" /></a></div>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Microsoft Edge 편리 기능】URL 바를 카피하면 타이틀을 포함한 Markdown 형식으로 붙여넣기 가능업무로 이용하고 있는 Microsoft 계정으로 관리를 할 수 있는 것이 일인으로 보급되었던 Microsoft Edge에는, URL을 타이틀도 포함한 Markdown 형식으로 copipe 할 수 있는 편리한 기능이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.