码迷,mamicode.com
首页 > 其他好文 > 详细

不通过getElementByName实现获取表单数据 (document.form表单的name值.input输入框的name值)

时间:2017-06-25 17:41:33      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:手机   通过   upd   enter   action   log   for   order   nbsp   

 

	function update() {
                //document.form表单的name值.input输入框的name值
		var username = document.form1.username;
		var mobile = document.form1.mobile;
		var qq = document.form1.qq;
        }



<form name="form1" method="post" action="">
  <table width="500" border="1" cellpadding="5" cellspacing="0">
    <tr>
      <td colspan="2" align="center" bgcolor="#FFFF00">通讯录</td>
    </tr>
    <tr>
      <td width="80" align="center">姓名</td>
      <td width="204"><input type="text" name="username" id="username"></td>
    </tr>
    <tr>
      <td align="center">手机号码</td>
      <td><input type="tel" name="mobile" id="mobile"></td>
    </tr>
    <tr>
      <td align="center">QQ号码</td>
      <td><input type="number" name="qq" id="qq"></td>
    </tr>
</table>
</form>

  

不通过getElementByName实现获取表单数据 (document.form表单的name值.input输入框的name值)

标签:手机   通过   upd   enter   action   log   for   order   nbsp   

原文地址:http://www.cnblogs.com/1020182600HENG/p/7077230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!