• eval实例


    ....
        var sel_MedicineType = 'sel_MedicineType' + lastIndex;
        eval(sel_MedicineType + "= new C_Select('" + sel_MedicineType + "')");
        eval(sel_MedicineType + ".BindingData(JSON.parse('" + JSON.stringify(MedicineTypeList) + "'))");
        //$("input[type='text'].MedicineID").focus();//为了定位最后1行
        eval(sel_MedicineType + ".Change = function () { ChangHerbQty(" + lastIndex + ",this)}")
        eval("$("button[data-id='" + sel_MedicineType + "']").click()");
    }
    //项目类型控制"贴数字段"
    function ChangHerbQty(index, selObj) {
        if (selObj.value == "ClcA600003") {
            $("#PostsQuantity" + index).attr("disabled", true); //PostsQuantity 贴数字段
        }
        else {
            $("#PostsQuantity" + index).attr("disabled", false);
        }
    }
  • 相关阅读:
    [HNOI 2003] 消防局的设立
    Codeforces 341
    CF 专栏
    TC SRM 570
    TC SRM 588
    TC SRM 589
    TC专栏
    BZOJ 第二十一页 除草
    BZOJ 第二十二页 除草
    BZOJ 第二十三页 除草
  • 原文地址:https://www.cnblogs.com/zhuji/p/7569145.html
Copyright © 2020-2023  润新知