以下脚本在 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 字段的值,所以我知道它在页面上,但禁用功能不起作用。
谢谢你的帮助。