Set the Value of a Hidden field using JQuery

后端 未结 3 1065
夕颜
夕颜 2021-01-04 00:27

I want to set the value of a hidden field, using JQuery.

Hidden Field:


3条回答
  •  既然无缘
    2021-01-04 01:02

    If you have a hidden field like this

      
    

    Now you can use your value like this

    $(this).parent().find('input[type=hidden]').val()

提交回复
热议问题