是否有办法在做事前检查两个或两个以上的身份证。
例如:
如果对BOTH查询箱1和核对箱2进行核对,则会发生这样的事件。
但是,如果只有1个或1个被自己检查,就会发生。
我认为,这样做只会奏效。
function toggleStatus() {
if ($( #checkbox1 #checkbox2 ).is( :checked )) {
$( .option1 :input ).attr( checked , true);
} else {
$( .option1 :input ).attr( checked , false);
}
function toggleStatus() {
if ($( #checkbox1 ).is( :checked )) {
$( .option2 :input ).attr( checked , true);
} else {
$( .option2 :input ).attr( checked , false);
}
function toggleStatus() {
if ($( #checkbox2 ).is( :checked )) {
$( .option3 :input ).attr( checked , true);
} else {
$( .option3 :input ).attr( checked , false);
}
我希望我能正确解释这一点。 我期待3天,我 st。 感谢任何帮助!