输入:
<input type="radio" name="options" id="onetime" autocomplete="off" value="90" class='planSelect'> One-Time 6 Months
jQuery的:
$('.planSelect').value;
这是返回&#34; 90undefined&#34;我不知道为什么?
答案 0 :(得分:2)
$('。planSelect')返回一个jQuery选择器,使用.val来访问它的值
使用$('。planSelect')。val();代替。
port
let index = 0;
let randomColors = ["red","green","blue"];
function run(){
$("#result").text($('.planSelect').val()).css("color",randomColors[index++%3]);
}