Notice
Recent Posts
Recent Comments
Link
투케이2K
62. (jquery/제이쿼리) addClass 속성 사용해 style 스타일에 정의된 css class 클래스 설정 실시 본문
Jquery
62. (jquery/제이쿼리) addClass 속성 사용해 style 스타일에 정의된 css class 클래스 설정 실시
투케이2K 2022. 12. 2. 12:00[개발 환경 설정]
개발 툴 : Edit++
개발 언어 : jquery
[소스 코드]
<!-- 내부 CSS 스타일 지정 -->
<style>
/* [css 스타일 클래스 설정] */
.lined {
text-decoration: line-through;
color: lightgray;
}
</style>
<!-- [CDN 라이브러리 설치] -->
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<!-- [내부 자바스크립트 J쿼리 이벤트 지정] -->
<script>
/**
* --------------------------------
* [요약 설명]
* --------------------------------
* 1. load : html 최초 로드 수행 시 호출 되는 함수입니다
* --------------------------------
* 2. addClass : css 스타일에서 생성한 클래스를 추가할 수 있습니다
* --------------------------------
*/
// [html 최초 로드 및 이벤트 상시 대기 실시]
$(window).load(function(){
console.log("");
console.log("=========================================");
console.log("[window load] : [html 로드 수행 실시]");
console.log("=========================================");
console.log("");
// [테스트 함수 호출]
testMain();
});
// [테스트 자바스크립트 함수]
function testMain(){
console.log("");
console.log("=========================================");
console.log("[testMain] : [start]");
console.log("=========================================");
console.log("");
// [id 가 pTag 인 지정 및 css 스타일 클래스 추가]
$("#pTag").addClass("lined");
};
</script>
<body>
<!-- [container 생성 실시] -->
<div id="divTag" class="divTagContentHeightSmallClass">
<p id="pTag" class="pTagContentMiddleClass">P 태그 : 안녕 투케이 반가워</p>
</div>
</body>
[결과 출력]
반응형
'Jquery' 카테고리의 다른 글
Comments