首页 > 代码库 > jquery如何获取对应表单元素?
jquery如何获取对应表单元素?
问题描述:我页面中有这样多个表单,我都是这个定义的,当我点击确定按钮时,此时能够获得相对应的表单对象,我该怎么获取到他的两个值呢?
解决方案:
页面元素
<form id="form1"> <lable>姓名:</lable> <input type="text" class="user_name"> <lable>电话:</lable> <input type="text" class="user_tel"> <span class="button">确定</span> </form> <form id="form2"> <lable>姓名:</lable> <input type="text" class="user_name"> <lable>电话:</lable> <input type="text" class="user_tel"> <span class="button">确定</span> </form> <form id="form3"> <lable>姓名:</lable> <input type="text" class="user_name"> <lable>电话:</lable> <input type="text" class="user_tel"> <span class="button">确定</span> </form>
jquery实现方法(自己任意添加一个jquery库即可)
$(function(){ $(‘.button‘).each(function(){ $(this).click(function(){ var name = $(this).parent(‘form‘).find(‘.user_name‘).val(); var tel = $(this).parent(‘form‘).find(‘.user_tel‘).val(); console.log(name); console.log(tel); }); }); })
jquery如何获取对应表单元素?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。