반응형
jQuery의 removeAttr로 여러 속성 제거
다음 코드가 있습니다.
$(document).ready(function(){
$('#listing img')
.attr('width', 250)
.removeAttr('height').removeAttr('align').removeAttr('style')
.wrap('<p />');
});
여러 속성을 제거하는 더 효율적인 방법이 있습니까?
예 :
.removeAttr('height align style')
에서 문서 :
버전 1.7부터는 공백으로 구분 된 속성 목록 일 수 있습니다.
예, 다음과 같이 제거 할 수 있습니다.
$('#listing img').removeAttr('height align style');
다음과 같이 기존 속성을 추가 할 수도 있습니다.
$('#listing img').attr({ height: "20", align: left }).css({ color: red, text-align: center });
참고 URL : https://stackoverflow.com/questions/13725301/remove-multiple-attributes-with-jquerys-removeattr
반응형
'IT' 카테고리의 다른 글
Java와 같은 C #에 키워드가 있습니까? (0) | 2020.09.16 |
---|---|
함수를 호출 할 때 "예외 발생"이 필요한 이유는 무엇입니까? (0) | 2020.09.16 |
Vim에 타임 스탬프를 삽입하는 가장 좋은 방법은 무엇입니까? (0) | 2020.09.15 |
왼쪽 외부는 Rails 3에서 결합됩니다. (0) | 2020.09.15 |
Google Maps Api v3- 가장 가까운 마커 찾기 (0) | 2020.09.15 |