如何在文本框之间拷贝字符串
cppvc 2001-12-28 04:00:47 我在同一个页面中有两个文本框:
<form method="post" action="process1.asp">
<input type=file name="file1">
</form>
...
<form method="post" action="process2.asp">
<input type=file name="file2">
</form>
我想实现的功能是当用户在file1中选择文件后,该文件名自动出现在file2的文本框中。请问应该如何实现?