首页 > 其他分享 >通过jQuery获取多种input值

通过jQuery获取多种input值

时间:2022-10-31 12:55:11浏览次数:50  
标签:jQuery const sex 获取 radio input

取值

1.type='radio'

获取一组radio被选中项的值:const sex = $("input[name='sex']:checked").val();

2.type='text'

获取用户在文本框输入的值:const age = $("input[name='age']").val();

注意:input标签中不能缺少value属性

标签:jQuery,const,sex,获取,radio,input
From: https://www.cnblogs.com/wu-zz/p/16843916.html

相关文章