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

http://img.mukewang.com/56fb829d0001000a05100455.jpg

<!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>

big_person
浏览 1417回答 1
1回答

淡雅的默

<!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>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript