在一个表单中,标签下有4 个单选按钮Q3
。我也有一个标记为lictype
每个单选按钮的文本字段Button Radio Choice Value
- 收音机1 =
Pre
- 收音机2 =
Pro
- 收音机3 =
Ult
- 收音机4 =
Uns
选中单选按钮时。我希望该按钮的值显示在lictype
文本字段中。
这是我在计算中尝试的 JS。
var q3 = this.getField("value")
if (q3.value == "Pre”){
{
lictype.value = “Pre";
}
elseif (q3.value == "Pro”)
{
lictype.value = “Pro";
}
elseif (q3.value == "Ult”)
{
lictype.value = “Ult";
}
else (q3.value == "Uns”)
{
lictype.value = “Uns";
}