0

我有一个单选按钮,用户必须选择 A 或 B。根据选择,我希望它影响表单其余部分的字符限制。

来自互联网的控制表单字符限制的示例代码(来源:Assure Dynamics)。

if (this.rawValue.length > 25)
{
var vInput = TextField3.rawValue.toString();
this.rawValue = vInput.substring(0,25);
}

如果选择 B,我想修改脚本,以便将值 25 更改为 50。

4

1 回答 1

0

也许有一个在单选按钮 onchange 事件上更新的变量“限制”?

var limit = 25;

function onRadioChange () {
    if(getElementById('radio50').checked) {
        limit = 50;
    } else {
        limit = 25;
    }
}

if (this.rawValue.length > limit) {
    var vInput = TextField3.rawValue.toString();
    this.rawValue = vInput.substring(0,limit);
}
于 2015-03-13T20:19:04.247 回答