靜態頁面傳參數

index.htm

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body>
<input type="hidden" id="input" value="str">
<input type="submit" value="跳轉" onClick="window.open('open.htm','','');">
</body>
</html>


open.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body>
<script>
var obj = window.opener.input.value;
document.write("這是從index.htm的input上傳過來的值\""+obj+"\"");
</script>
</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章