- <HTML>
- <HEAD>
- <META http-equiv="Content-type" content="text/html; charset=utf-8">
- <TITLE>JavaScript でフレーム操作</TITLE>
- <SCRIPT language="javascript" type="text/javascript">
- function doAction() {
- var base = document.getElementById("id001");
-
- // IFRAME 作成
- var obj = document.createElement("iframe");
-
- // IFRAME の内容をセット
- obj.src = "http://www.google.co.jp/"
-
- // IFRAME を実装
- base.appendChild(obj);
- }
- window.onload = doAction;
- </SCRIPT>
- </HEAD>
- <BODY>
- <DIV id="id001"></div>
- </BODY>
- </HTML>
<HTML>
<HEAD>
<META http-equiv="Content-type" content="text/html; charset=utf-8">
<TITLE>JavaScript でフレーム操作</TITLE>
<SCRIPT language="javascript" type="text/javascript">
function doAction() {
var base = document.getElementById("id001");
// IFRAME 作成
var obj = document.createElement("iframe");
// IFRAME の内容をセット
obj.src = "http://www.google.co.jp/"
// IFRAME を実装
base.appendChild(obj);
}
window.onload = doAction;
</SCRIPT>
</HEAD>
<BODY>
<DIV id="id001"></div>
</BODY>
</HTML>
0 件のコメント:
コメントを投稿