IE 부자 창의 매개 변수 및 반환 값 전달

1521 단어 htmlwindowsIE
부모 창:main.html
//------------------------------------------
<html>
<head>
<script language="javascript">
function getValue(){
  var sta="dialogWidth:400px;dialogHeight:200px;status:no;help:no;center:yes";
  var para="this is the parameter";
  var value="1";
  value=window.showModalDialog("getValue.html",para,sta);
  alert(value);
}
</script>
</head>
<body>
<center>
<a href="#" onclick="getValue()"> </a>
</center>
</body>
</html>

하위 창:getValue.html
//--------------------------------------
<html>
<head>
<script language="javascript">
function init(){
  var para=window.dialogArguments;
  document.getElementById("para").innerHTML=para;
}
function getValue(){
  window.returnValue="this is the return value";
  window.close();
}
</script>
</head>
<body onload="init()">
<center>
<div id="para"></div>
<a href="#" onclick="getValue()"> </a>
</center>
</body>
</html>

주의: 하위 창의 getValue () 함수 이름은 "returnValue"를 사용할 수 없습니다. 그러면 윈도우즈와 같습니다.returnValue 이 시스템 변수는 서로 충돌합니다.

좋은 웹페이지 즐겨찾기