[JS + jquery] ์ œ์ด์ฟผ๋ฆฌ ์—ฐ์Šต๋ฌธ์ œ 1,2

2021. 10. 28. 22:30ใ†HTML + CSS + JS/JS ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ

728x90

* ์—ฐ์Šต๋ฌธ์ œ 1

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title> ์„ ํƒ์ž </title>  
<script src="js/jquery.js"></script>
<script>
$(function(){
	$(".wrap_1 p:first").text("๋‚ด์šฉ1");

	$(".wrap_1 p.active").removeClass("active").addClass("on");

	$(".wrap_1 p:eq(2) a").attr("href", "http://naver.com");

	$(".wrap_1 p:eq(3) input").val("Korea");

	$(".wrap_2 p:first").after("<p>After(์ถ”๊ฐ€1)</p>");

	$(".wrap_2 p:first").before("<p>Before(์ถ”๊ฐ€2)</p>");

	$(".wrap_3 p").unwrap().wrapInner("<strong />");
});
</script>
</head>
<body>
	<div class="wrap_1">
		<p>ํ…์ŠคํŠธ1</p> <!--๋‚ด์šฉ1๋กœ ๋ฐ”๋€œ-->
		<p class="active">๋‚ด์šฉ2</p>
		<p><a href="#">๋„ค์ด๋ฒ„</a></p>
		<p>
				<input type="text" value="Hello">
		</p>
	</div>
	<div class="wrap_2"> 
		<p>๋‚ด์šฉ5</p>
		<p>๋‚ด์šฉ6</p>
	</div>
	<div class="wrap_3">
		<div>
						<p>๋‚ด์šฉ7</p>
						<p>๋‚ด์šฉ8</p>
		</div>
	</div>
</body>
</html>

 

* ์—ฐ์Šต๋ฌธ์ œ 2

์ฒซ๋ฒˆ์งธ li ๋นผ๊ณ  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" lang="ko" xml:lang="ko">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title> ๊ฐ์ฒด ์กฐ์ž‘ ๋ฐ ์ƒ์„ฑ </title>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">

$(function(){
    $("#myList li").not(":first").css("background-color", "yellow");
});

</script>
</head>
<body>
 <ul id="myList">
		<li>๋‚ด์šฉ1</li>
		<li>๋‚ด์šฉ2</li>
		<li>๋‚ด์šฉ3</li>
		<li>๋‚ด์šฉ4</li>
	</ul>
</body>
</html>

 

 

* ์—ฐ์Šต๋ฌธ์ œ 3

์„ธ๋ฒˆ์งธ li์—๋งŒ 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" lang="ko" xml:lang="ko">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title> ๊ฐ์ฒด ์กฐ์ž‘ ๋ฐ ์ƒ์„ฑ </title>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
//<![CDATA[
$(function(){
    $("#myList li:eq(2)").css("background-color", "yellow");
});
//]]>
</script>
</head>
<body>
<ul id="myList">
  <li>๋‚ด์šฉ1</li>
  <li>๋‚ด์šฉ2</li>
  <li>๋‚ด์šฉ3</li>
  <li>๋‚ด์šฉ4</li>
</ul>
</body>
</html>
728x90