我有下面的代碼,雖然有更優雅的方式來獲取選定的無線電值,因爲我已經在單選按鈕組的代碼中。這是爲了獲得組內選定的單選按鈕。 非常感謝,如何獲得單選按鈕組選擇
$('input[name=pig]').change(function() {
// this seems redundant
namespace('bla').myVariable = $('input[name=pig]:checked').val();
// ie. something like
namespace('bla').myVariable = $(this).checked.val();
});
偉大謝謝。以爲我錯過了一些東西。 –