问题描述:我页面中有这样多个表单,我都是这个定义的,当我点击确定按钮时,此时能够获得相对应的表单对象,我该怎么获取到他的两个值呢?

解决方案:

 页面元素

<form >
    <lable>姓名:</lable>
    <input type="text" class="user_name">
    <lable>电话:</lable>
    <input type="text" class="user_tel">
    <span class="button">确定</span>
</form>
<form >
    <lable>姓名:</lable>
    <input type="text" class="user_name">
    <lable>电话:</lable>
    <input type="text" class="user_tel">
    <span class="button">确定</span>
</form>
<form >
    <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);
        });
     });
})

  

相关文章:

  • 2021-11-28
  • 2021-11-28
  • 2021-11-28
  • 2021-09-04
  • 2022-12-23
猜你喜欢
  • 2021-11-28
  • 2021-12-09
  • 2022-12-23
  • 2022-01-08
  • 2022-01-29
  • 2021-12-09
  • 2022-12-23
相关资源
相似解决方案