我收到此代码的语法错误,但我不知道为什么。
$(".choose-one .monthly, .choose-one .yearly").live("click", function() {
billing_selection();
});
function billing_selection() {
if($(this).hasClass("yearly") {
$(this).addClass("selected");
$(".billing-options-hidden option:eq(1)").attr('selected', 'selected');
} else {
$(this).addClass("doSomething");
}
}
这是我的第一篇文章,请温柔。