$('#myinput').clone().attr('type', 'password').insertAfter('#myinput').prev().remove();
이렇게 해 주면,
#myinput 이라는 id를 가진 element가 password 타입의 input 필드로 교체된다.
clone을 생성한 후, password 타입을 주고 원래 element의 뒤에 추가해 준 후,
추가해 준 element의 바로 앞(원래 element) 요소를 remove하는 것이다.
반응형
'Web > JQuery' 카테고리의 다른 글
[jQuery] 즉시실행 함수와 플러그인 충돌 방지에 대해 (0) | 2016.09.15 |
---|---|
[jQuery] hidden 오브젝트 속성 가져오기 (0) | 2016.09.15 |
[jQuery] 오브젝트를 중앙기준으로 width 조절하는 animation하기 (0) | 2016.09.15 |
[JQuery][Plugin] 전체화면을 다루는 플러그인 (0) | 2016.08.13 |