新微赢技术网

标题: [求助]如何实现两文本框值互换? [打印本页]

作者: 天语悠悠    时间: 2010-1-20 01:14
标题: [求助]如何实现两文本框值互换?
请哪位指教一下,如何实现当按下BUTTON时,两个文本框内值的互换多谢了,!
[知识问答ωωω.χiuGoo.сom]
作者: 大陆猪头    时间: 2010-1-20 01:14
这个太简单了,你自己练习练习吧
作者: 飞你默属    时间: 2010-1-20 01:14
  1. <script language="JavaScript" type="text/javascript">
  2. function test()
  3. {
  4. a1=document.form1.text1.value;
  5. a2=document.form1.text2.value;
  6. document.form1.text1.value=a2;
  7. document.form1.text2.value=a1;
  8. }
  9. </script>
  10. <form id="form1" name="form1" method="post" action="">
  11. <input name="text1" type="text" id="text1" />
  12. <input name="text2" type="text" id="text2" />
  13. <input type="button" value="按钮" onclick="test()" />
  14. </form>
复制代码

作者: 漫步烟雨中    时间: 2010-1-20 01:15
thank you very much! 因为我是很菜的鸟呵,多谢多谢!




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2