2006年02月27日
同一ドメインでの利用
- lightbox
- 17:30
- トラックバックする
- カテゴリー:IFRAME アクセス
こちら側
<SCRIPT language=JavaScript> function OpenIFrame() { var objFrame = document.getElementById("RefIFrame"); objFrame.style.display = ""; } function CloseIFrame() { var objFrame = document.getElementById("RefIFrame") objFrame.style.display = "none"; } function TransferData() { if ( document.all ) { document.frames[0].document.getElementsByName("field")[0].value = document.getElementsByName("field")[0].value; } else { window.frames[0].document.getElementsByName("field")[0].value = document.getElementsByName("field")[0].value; } } </SCRIPT> <INPUT type=text name=field> <INPUT style='width:80px' type=button value="開く" onClick='OpenIFrame()'> <INPUT style='width:80px' type=button value="閉じる" onClick='CloseIFrame()'> <INPUT style='width:80px' type=button value="データ転送" onClick='TransferData()'> <br /> <IFRAME id=RefIFrame style=' width:400; height:100; display:none; ' src='/IFrame.htm' ></IFRAME>IFRAME 側
<SCRIPT language=JavaScript> function CloseIFrame() { var objFrame = parent.document.getElementById( "RefIFrame" ); objFrame.style.display = "none"; } function TransferData() { parent.document.getElementsByName( "field" )[0].value = document.getElementsByName("field")[0].value; } </SCRIPT> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=Shift_JIS"> </HEAD> <BODY> <INPUT style='width:80px' type=button value="閉じる" onClick='CloseIFrame()'> <br> <INPUT style='width:80px' type=button value="データ転送" onClick='TransferData()'> <br> <INPUT type=text name="field"> </BODY>
2006年02月その他のエントリー
2006年02月26日
2006年02月25日
2006年02月23日
2006年02月22日
2006年02月21日
2006年02月20日
2006年02月19日
2006年02月18日
2006年02月15日
2006年02月14日
2006年02月13日
2006年02月11日
2006年02月10日
2006年02月09日
2006年02月08日