티스토리 뷰
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<title>jQuery Selector Example</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
// 요소 선택자(Element Selector)
$("p").css("color", "red");
// 클래스 선택자(Class Selector)
$(".example").css("background-color", "yellow");
// ID 선택자(ID Selector)
$("#example").css("font-weight", "bold");
// 속성 선택자(Attribute Selector)
$("input[type='text']").val("Hello World!");
// 자식 선택자(Child Selector)
$("div > p").css("font-size", "20px");
// 후속 형제 선택자(Next Adjacent Selector)
$("h1 + p").css("text-decoration", "underline");
// 형제 선택자(Sibling Selector)
$("h1 ~ p").css("font-style", "italic");
});
</script>
</head>
<body>
<div>
<p>Paragraph 1</p>
<p class="example">Paragraph 2</p>
<p>Paragraph 3</p>
</div>
<h1 id="example">Heading 1</h1>
<p>Paragraph 4</p>
<input type="text" value="">
<p>Paragraph 5</p>
</body>
</html>
jQuery Element Selectors(요소 선택자)
$("p") selects all <p> elements.
$("p.intro") selects all <p> elements with class="intro".
$("p#demo") selects all <p> elements with id="demo".
jQuery Atrribute Selectors(속성 선택자)
$("[href]") select all elements with an href attribute.
$("[href='#']") select all elements with an href value equal to "#".
$("[href!='#']") select all elements with an href attribute NOT equal to "#".
$("[href$='.jpg']") select all elements with an href attribute that ends with ".jpg".
jQuery Css Selectors(css 선택자)
$("p").css("background-color","yellow");
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Selectors Sample 1</title>
<script src="../Script/jquery-1.6.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("[name=cssAdd]").click(function () {
$("p").css("background-color", "silver");
});
$("[name=cssDelete]").click(function () {
$("p").css("background-color", "");
});
});
</script>
</head>
<body>
<p>Background Color를 jQury가 컨트롤 한다.</p>
<button name="cssAdd">backgroud color 생성</button>
<button name="cssDelete">backgroud color 제거</button>
</body>
</html>
Syntax | Description |
---|---|
$(this) | Current HTML element |
$("p") | All <p> elements |
$("p.intro") | All <p> elements with class="intro" |
$("p#intro") | All <p> elements with id="intro" |
$("p#intro:first") | The first <p> element with id="intro" |
$(".intro") | All elements with class="intro" |
$("#intro") | The first element with id="intro" |
$("ul li:first") | The first <li> element of each <ul> |
$("[href$='.jpg']") | All elements with an href attribute that ends with ".jpg" |
$("div#intro .head") | All elements with class="head" inside a <div> element with id="intro" |
출처: https://jangjeonghun.tistory.com/477 [정훈이의 프로그래밍 이야기:티스토리]
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 인텔리제이(intellij)
- 진수 변환
- 람다식(lambda expression)
- error-java
- 메이븐(maven)
- 스프링 시큐리티(spring security)-http basic 인증
- java-개발 환경 설정하기
- 스프링 시큐리티(spring security)
- jstl(java standard tag library)-core
- .submit()
- MainActor
- REST API
- 제품 등록
- nl2br
- 문자 자르기
- System.Diagnostics
- 스프링 프레임워크(spring framewordk)
- await
- 표현 언어(expression language)
- java web-mvc
- jstl(java standard tag library)
- In App Purchase
- 스프링 프레임워크(spring framework)
- 상품 등록
- jsp 오픈 소스
- 특정 문자를 기준으로 자르기
- React
- java 키워드 정리
- system.io
- java.sql
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함