<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<title>FLYSO Blog</title>
</head>
<body>
<?php
for($a=1;$a<4;$a++) { ?>
<form id="form<?php echo $a;?>" name="form<?php echo $a;?>" method="post" action="">
<label></label>
<label>
<input name="dongsen" type="text" id="dongsen" value="<?php echo $a;?>" />
</label>
<a href="#?form=<?php echo 'form'.$a;?>" onclick="show(<?php echo $a;?>)">显示在另外的文本框上</a>
</form>
<?php }
$forma=$_GET['form'];
echo $forma;
?>
<form id="form5" name="form5" method="post" action="">
<label>
<input name="senlang" type="text" id="senlang" />
</label>
</form>
<p> </p>
<script type="text/javascript">
function show(flag)
{
form5.senlang.value="form"+flag.dongsen.value;
}
</body>
</html>
另外
<a href="#?form=<?php echo 'form'.$a;?>" onclick="show(<?php echo $a;?>)">
这样的连接方式获取不到参数,但是把那个#改成它本身的网页名就可以,到底为什么呢?