JS呼叫 iframe 切換頁面-網頁選單全部資料庫化相關資料
JS呼叫 iframe 切換頁面-網頁選單全部資料庫化相關資料
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>無標題文檔</title>
<script type=”text/javascript”>
function test()
{
alert(’11’);
i1.location=”3.html”;
alert(’22’);
alert(’33’);
}
</script>
</head>
<body>
<iframe id=”i1″ name=”i1″ src=”2.html” height=”400″ width=”400″ ></iframe>
<input type=”button” value=”切換” onclick=”test()” />
</body>
</html>