1. addClass() 함수
특정한 엘리먼트에 동적으로 class 속성을 부여하는 함수
<script>
$(document).ready(function(){
$("button").click(function(){
$("p:first").addClass("intro");
});
});
</script>
<style>
.intro {
font-size: 150%;
color: red;
}
</style>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Add a class name to the first p element</button>
웹상에서 바로 확인하기
http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_html_addclass
2. appendTo() 함수
지정한 엘리먼트의 끝에 지정된 엘리먼트를 붙인다.
$("<span>Hello World!</span>").appendTo("p");
위 코드의 경우, 페이지내의 모든 P 엘리먼트의 끝에 <span>Hello World!</span> 이 코드를 붙인다.
웹상에서 바로 확인하기
http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_html_appendto
nodejs 및 jQuery 를 이용한 서버와의 통신 참고하기 (0) | 2016.08.05 |
---|---|
jQuery UI 의 상호작용(interaction) draggable() 함수 살펴보기 (0) | 2016.08.02 |
AngularJS 자바스크립트 라이브러리 살펴보기 (0) | 2016.07.29 |
jQuery FileUpload Plugin ... Multiple 가능, 미리보기 가능 (0) | 2016.07.28 |
jQuery easing plugin , 동적으로 움직임을 주는 플러그인 (0) | 2016.07.26 |
댓글 영역