0

以下脚本在 IE8 中有效,但在 IE9 中无效:

function toggleSelect(fieldName)
{
    var idx = fieldName.lastIndexOf("_");
    var sub = fieldName.substring(19,idx);
    if (document.findForm["cb_Row_PageAutoDelete_" + sub].checked) {
          document.findForm["SHIP_QTY_" + sub].disabled=false ;
    } else {
        document.findForm["SHIP_QTY_" + sub].disabled=true ;
    }
    return true;
}

我可以显示 SHIP_QTY 字段的值,所以我知道它在页面上,但禁用功能不起作用。

谢谢你的帮助。

4

1 回答 1

0

如果findForm是表单的名称,您想要window.findForm而不是document.findForm. 您也可以直接使用其他字段checked属性的结果,而不是使用if/else. 因此,您的代码更改为:

function toggleSelect(fieldName)
{
    var idx = fieldName.lastIndexOf("_");
    var sub = fieldName.substring(19,idx);
    window.findForm["SHIP_QTY_" + sub].disabled = window.findForm["cb_Row_PageAutoDelete_" + sub].checked;
    return true;
}
于 2012-04-23T21:38:41.423 回答