im试图弄清楚如何做到以下几点:
试图获得一个没有解决的条件语句...我不知道我哪里出错了!
这是我到目前为止的代码:
if ($('input[name="step_2]:checked').val() == "yes" && ('input[name="step_3"]:checked').val() == "annually") {
step2_price = 30;
}
答案 0 :(得分:1)
重构代码
if ($('input[name="step_2"]:checked').val() == "yes" && $('input[name="step_3"]:checked').val() == "annually") {
step2_price = 30;
}
您在$
输入之前错过了一个美元step_3
,在"
之前错过了一个step_2