我正在使用 jQuery,但在将变量从复选框的值传递给函数时遇到问题。我可以从 Switch 语句传递给函数,但不能从 If Then 传递。我只是在寻找有关原因的帮助。
$("input[type=checkbox]").change( function() {
if($(this).is(":checked")){
passVar = ( $(this).val() );
addToOrder(passVar);
alert(passVar);
} else {
alert("off");
} });
非常感谢任何帮助。