Jquery get form field value

前端 未结 8 2244
醉酒成梦
醉酒成梦 2020-12-01 07:13

I am using a jquery template to dynamically generate multiple elements on the same page. Each element looks like this

8条回答
  •  独厮守ぢ
    2020-12-01 07:47

    You can try these lines:

    $("#DynamicValueAssignedHere .formdiv form").contents().find("input[name='FirstName']").prevObject[1].value
    

提交回复
热议问题