jQuery 取得 RadioGroup的選取值
2009/11/06 14:36
瀏覽976
迴響0
推薦1
引用0
function getRadioGroupValue(myRadioGroupName){
var gpValue = $('input[@name="myRadioGroupName"]:checked').val();
alert( "The value you selected is : " + gpValue );
}
你可能會有興趣的文章: