--------------------------------------------------------------------------
부모창
--------------------------------------------------------------------------
<a onclick="nw = window.open('pop.html', 'pop2', 'width=500 height=500')">1. 새창</a>
<br /><br>
<a onclick="nw.ifm.location.href='http://empas.com';">2. 엠파스로</a>
<br><br>
<a onclick="nw.document.getElementById('ifm').src='http://phpschool.com';he();">3. 바뀜</a>
<script>
function he(){
ifrmx=nw.document.getElementById('ifm');
h = parseInt(ifrmx.height);
w = parseInt(ifrmx.width);
ifrmx.height=h-10;
ifrmx.width=w-10;
if(h > 100)
setTimeout("he()", 500);
}
</script>
--------------------------------------------------------------------------
팝업창
--------------------------------------------------------------------------
팝업창
<br /><br /><br />
<iframe src="http://daum.net" width="500" height="200" name="ifm" id="ifm"></iframe>
'컴터 > Javascript / html' 카테고리의 다른 글
스크롤 생겼을때 y 축계산시 벗어난것 해결 (0) | 2008.08.07 |
---|---|
링크를 클릭하면 현재 페이지를 html파일로 저장 (0) | 2008.06.20 |
ime-mode (0) | 2008.04.13 |
클립보드에 복사하기 (setData) (0) | 2008.04.12 |