<html>
<head>
<title>javascript同一頁面傳值</title>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
</head>
<script language="JavaScript">
function ok()
{
document.form2.textfield2.value=document.form1.textfield.value;
}
function ok1()
{
document.form1.textfield.value=document.form2.textfield2.value;
}
</script>
<body>
<form name="form1" method="post" action="">
<input type="text" name="textfield">
<input type="button" name="Submit" value="A->B" onClick="ok()">
</form>
<form name="form2" method="post" action="">
<input type="text" name="textfield2">
<input type="button" name="Submit" value="B->A" onClick="ok1()">
</form>
</body>
</html>

arrow
arrow
    文章標籤
    javascript 同一頁面傳值
    全站熱搜

    痞客興 發表在 痞客邦 留言(0) 人氣()