'像这样 Option Explicit Dim b As Boolean Private Sub Check1_Click() If b Then Exit Sub If Check2.Value = 1 Then b = True Check2.Value = 0 b = False End If End Sub Private Sub Check2_Click() If b Then Exit Sub If Check1.Value = 1 Then b = True Check1.Value = 0 b = False End If End Sub