DJ메탈짱™의 Free Style

[Jquery] addClass(), removeClass(), attr(), readOnly 속성 #function 본문

일(job)/FRONT

[Jquery] addClass(), removeClass(), attr(), readOnly 속성 #function

뽀&쏭 2016. 1. 21. 13:15

// 2012/05/08 input type=text readonly true/false 설정

function UpdateCssClass(obj,type) {

    if (type == "EDIT") {

        $("#" + obj).removeClass("input02");

        $("#" + obj).addClass("input00");

        $("#" + obj).attr("readOnly",false);

        obj.readOnly = false;

    } else if (type == "READ") {

        $("#" + obj).removeClass("input00");

        $("#" + obj).addClass("input02");

        $("#" + obj).attr("readOnly"true);

        obj.readOnly = true;

    }

}