JQuery easyui 笔记

1.控件启用,禁用

        $form.find("input[type!='button']").removeAttr("readonly");
        $form.find(".easyui-combobox").combobox("enable");
        $form.find(".easyui-combotree").combotree("enable");
        $form.find(".easyui-datebox").datebox("enable");
        $form.find(".easyui-datetimebox").datetimebox("enable");


        $form.find("input[type!='button']").attr("readonly", "readonly");
        $form.find(".easyui-combobox").combobox("disable");
        $form.find(".easyui-combotree").combotree("disable");
        $form.find(".easyui-datebox").datebox("disable");
        $form.find(".easyui-datetimebox").datetimebox("disable");

 

posted on 2015-04-21 09:47  天凉好个球  阅读(117)  评论(0编辑  收藏  举报

导航