jQuery passing element ID into jquery statement?

前端 未结 6 1970
野性不改
野性不改 2020-12-11 03:12

I\'d like to pass the ID of an element into a function which then calls jQuery. However, I\'m stumped as to how to actually take the ID variable and concatenate it with othe

6条回答
  •  一整个雨季
    2020-12-11 03:30

    When button is click then it get the button id which I later use to get it's field data, use + operator to dynamic change id

    $('.btnsave').click(function() 
      {
          btnvalue = $(this).val();
          //alert(btnvalue);
          adjust_value = $('#adjust_value'+btnvalue).val();
          ado = $('#ado'+btnvalue).val();
          amount =  $('#amount'+btnvalue).val();
          description = $('#description'+btnvalue).val();
          //alert(adjust_value+ado+amount+description);
          
      })

提交回复
热议问题