码迷,mamicode.com
首页 > Web开发 > 详细

js技术之根据name获取input的值

时间:2021-06-03 18:02:30      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:put   col   inpu   end   jquer   前端   div   radio   span   

一.前端的代码

<p>Name: <input type=‘text‘, name = ‘name‘/></p>
<p>Age: <input type = ‘text‘ name =‘age‘/></p>
<p>Sex:
<label><input type = ‘radio‘ name = ‘sex‘ value = ‘Man‘/>Man</label>
<label><input type = ‘radio‘ name = ‘sex‘ value = ‘Woman‘/>Woman</label>
</p>
<p><input type = ‘button‘ value="Press me to send GET request" id = ‘btn1‘/></p>

二.获取的方式(写在js或者jQuery中)

1.根据name获取input的值

var name = $("input[name=‘name‘]").val();
var age = $("input[name=‘age‘]").val();

 

2.根据name获取单击事件的value值

var sex = $("input[name=‘sex‘]:checked").val();

 

js技术之根据name获取input的值

标签:put   col   inpu   end   jquer   前端   div   radio   span   

原文地址:https://www.cnblogs.com/saoge/p/14844491.html

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