我尝试根据复选框值选中或取消选中特定复选框。当我勾选方框时,其他方框会被检查,但是如果我取消选中该方框,其他方框就不会被取消选中。我已尝试使用鼠标退出和鼠标按钮触发器,结果相同。
if (this.getField("Check Box2").value == "On")
{
this.getField("Check if this is an").value = "On";
this.getField("Check 1").value = "On";
this.getField("Check Box230").value = "Yes";
}
else //if (this.getField("Check Box2").value == "Off")
{
//this.getField("Check if this is an").value = "Off";
this.getField("Check if this is an").checkThisBox(0, false)
this.getField("Check 1").value = "Off";
this.getField("Check Box230").value = "Off";
}
我已经尝试了2个if
语句,if/else
以及.value = "Off"
和checkThisBox(0, false)
方法。当我使用控制台中的任何一种方法运行单行时,它可以工作。