1. 程式人生 > >jQuery取得radio的值 取select得值

jQuery取得radio的值 取select得值

選中 put var tro wrap str 單選按鈕 method query

獲取一組單選按鈕對象:

var obj_payPlatform = $(‘#wrap input[name="payMethod"]‘);

獲取被選中按鈕的值 :

var val_payPlatform = $(‘#wrap input[name="payMethod"]:checked ‘).val();

獲取select的值

"typeId":$("#typeId option:selected").val()},

jQuery取得radio的值 取select得值