新手提问,望大家帮忙解答,急急急!(100分)

  • 主题发起人 主题发起人 ljy
  • 开始时间 开始时间
L

ljy

Unregistered / Unconfirmed
GUEST, unregistred user!
现在网页上有二个编辑框,用一BUTTON ONCLICK实现如下功能:
将第一个TEXTBOX中选中的文字COPY到另一TEXTBOX中!
领导不愿意按CTRL+C和V,没办法,程序员真难做呀,完各位帮忙解答!
 
<SCRIPT language=JavaScript>
function Copy1()
{
do
cument.frm.text2.value=document.frm.text1.value;
}
</SCRIPT>
...
<form method="POST" name="frm" action="xxx.asp">
<input type=text name=text1><br>
<input type=text name=text2><br>
<input type=button onclick="Copy1()">
</form>
...
 
小天,你好!
是将一个TEXTBOX中选定的文本,而不是所有文本进行COPY!
 
试试这个!绝对正确(我用的IE5.5) 只要支持HTML4 的我想都应该正确
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
</head>
<body>
<SCRIPT language=JavaScript>
function Copy1()
{
do
cument.frm.text2.value=document.frm.text1.value;
}
</SCRIPT>
<form method="POST" name="frm" action="xxx.asp">
<input type=text name=text1><br>
<input type=text name=text2><br>
<input type=button onclick="Copy1()">
</form>
</body>
</html>
其实就是抄小天的,HAHAHA
 
参考
http://www.java-cn.com/
 
后退
顶部