Two radio buttons share one “id”?

后端 未结 8 2262
别那么骄傲
别那么骄傲 2020-12-29 06:59

I\'m borrowing/adapting this simple html/javascript form set up to put some data in the database. The original code uses text fields in the form, but I\'m using radio button

8条回答
  •  一向
    一向 (楼主)
    2020-12-29 07:39

    ID Attribute is unique across the page. You should have different Ids for each radio button. Use below code to get the input value.

    var inputUser=$('input:radio[name=interview]:checked').val();
    

提交回复
热议问题