參考看看..
複製程式
<html>
<head>
<script type="text/javascript">
function job_01(){
document.a002.text_01.value = document.a001.some_word.value;
}
</script>
</head>
<body>
<form name="a001">
<input type="text" name="some_word" value="123"/>
<input type="button" value="copy word" onclick="javascript:job_01();"/>
</form>
<br/>
<form name="a002">
<input type="text" name="text_01" value=""/>
</form>
</body>
</html>