问题描述
页面中有一个text框和一个textarea框,我想实现当在text框中输入了内容后,点一个添加按钮,text中的内容就到了textarea中,可以添加多个,这个要怎么实现?
解决方案
解决方案二:
textArea.SetText=textBox.getText()
解决方案三:
写一个这个按钮的onclick事件
解决方案四:
最好有实例,谢谢
解决方案五:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html;charset=UTF-8"><title>Inserttitlehere</title></head><body><inputtype="text"id="id1"name="id1"/><br><inputtype="button"onclick="_click();"value="添加"/><br><textareaid="textarea1"name="textarea1"style="width:100%;height:500px;"></textarea>[code=JScript]<scripttype="text/javascript">function_click(){//获取textarea的内容varvalue=document.getElementById("textarea1").value==""?"":document.getElementById("textarea1").value+"rn";//获取text的内容vartext=document.getElementById("id1").value;//将text的内容追加到textarea中document.getElementById("textarea1").value=value+text;}</script>
</body></html>[/code]
解决方案六:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html;charset=UTF-8"><title>Inserttitlehere</title></head><body><inputtype="text"id="id1"name="id1"/><br><inputtype="button"onclick="_click();"value="添加"/><br><textareaid="textarea1"name="textarea1"style="width:100%;height:500px;"></textarea><scripttype="text/javascript">function_click(){//获取textarea的内容varvalue=document.getElementById("textarea1").value==""?"":document.getElementById("textarea1").value+"rn";//获取text的内容vartext=document.getElementById("id1").value;//将text的内容追加到textarea中document.getElementById("textarea1").value=value+text;}</script></body></html>
解决方案七:
引用5楼alan3258的回复:
HTMLcode<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">……
你这样的好心人便宜了LZ的不劳而获。建议LZ自己多动脑筋,自己写,遇到问题了再问,这样才能成长
解决方案八:
引用6楼xyylove520的回复:
引用5楼alan3258的回复:HTMLcode<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="tex……
你说的有道理,如果lz对编程有感觉的话,我想他以后遇到类似的问题,就该自己先试着写一写了