3-11 css 메서드 콜백 함수 DOCTYPE html>Insert title here$(function(){//배열 생성 - index 0 , 1, 2var color =['red','blue','purple'];// 문서 객체의 스타일을 변경// css() 메서드에서 두 번째 매개변수에 함수를 사용해서 개별적으로// 스타일 속성을 적용할 떄 사용$('h1').css('color',function(index){return color[index];})});Header-0Header-0Header-0 DOCTYPE html>Insert title here$(function(){//배열 생성 - index 0 , 1, 2var color =['red','blue','purple']; $('h1').css({'color': function(.. 더보기 3-8 removeAttr() DOCTYPE html>Insert title here/* removeAttr(name) 메소드 : 문서 객체의 속성을 제거*/$(function(){$('h1').removeAttr('data-index');});Header-0Header-0Header-0 더보기 3-6 attr() 콜백 함수 / 속성값 Object 사용 DOCTYPE html>Insert title here$(function(){$('img').attr('width',function(index){return(index+1)*100;});});DOCTYPE html>Insert title here$(function(){$('img').attr({width: function(index){return(index+1)*100;}, height: 100});}); 더보기 이전 1 ··· 5 6 7 8 9 10 11 ··· 18 다음