为了账号安全,请及时绑定邮箱和手机立即绑定

document.forms问题提问,如何才能使在第一个框输入一个数字后,鼠标点击第二和第三个框也出现同样数字。

document.forms问题提问,如何才能使在第一个框输入一个数字后,鼠标点击第二和第三个框也出现同样数字。

big_person 2016-03-30 15:42:49
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /></head><body><form><input type="text" onChange="document.my.elements[0].value=this.value;" /></form><form name="my"><input type="text" onChange="document.forms[0].elements[0].value=this.value;" /></form><form name="my"><input type="text" onchange="document.forms[0].elements[0].value=this.value;" /></form></body></html>
查看完整描述

1 回答

?
淡雅的默

TA贡献102条经验 获得超139个赞

<!DOCTYPE html >
<html>
  <head>
  <title>new document</title>
  <meta  charset="utf-8"/>
  
  </head>
<style>

</style>
<body>
<div>
    <input id="inp" type="text" value="111">
    <input type="text" value="">
    <input type="text" value="">
</div>
<script src="../../index/js/jquery.js"></script>
<script>
$(function(){
	$("input").click(function(){
		$(this).val($("#inp").val())
		})
	})
</script>
</body>
</html>


查看完整回答
2 反对 回复 2016-03-30
  • big_person
    big_person
    <script src="../../index/js/jquery.js"></script>什么意思?第二和第三个框还是没有反馈
  • 淡雅的默
    淡雅的默
    这个你自己去引入js库啊,看不懂地址还看不懂js文件叫什么啊
  • 淡雅的默
    淡雅的默
    这个你自己去引入js库啊,看不懂地址还看不懂js文件叫什么啊
  • 1 回答
  • 0 关注
  • 1416 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信