1-22 jQuery 충돌 방지 DOCTYPE html>Insert title here.high-light{background:orange;} .append::before{content:'※' }.append::after{content:'※'}$.noConflict(); //더이상 jQuery 의 식별자로 $를 사용할 수 없음var j = jQuery; //jQuery 객체를 다른 변수에 저장해서 사용함//jQuery 를 사용j(function(){alert('출동 방지 예제');j('h1').removeClass('high-light'); //클래스 속성 제거j('h1').addClass('append');//클래스 속성 추가});item - 0 더보기 1-21 클래스 속성 $.each DOCTYPE html>Insert title here$(function(){var array=[{name:"네이버", link:"http://www.naver.com"},{name:"다음", link:"http://www.daum.net"},{name:"구글", link:"http://www.google.com"}];var output='';$.each(array, function(index,item){output += '';output += ' ' + item.name +'';output += '';});document.body.innerHTML += output;}); 더보기 1-21 클래스 속성 추가 each DOCTYPE html>Insert title here .high-light-0{background:yellow;}.high-light-1{background:orange;}.high-light-2{background:blue;}.high-light-3{background:green;}.high-light-4{background:red;}.high-light-5{background:gray;} window.onload=function(){var hs = document.getElementsByTagName('h1');hs[0].setAttribute('class','high-light-0');hs[1].setAttribute('class','high-light-1');hs[2].setAttribute('.. 더보기 이전 1 ··· 9 10 11 12 13 14 15 ··· 18 다음