이번에는 html보다는 js쪽문법을 좀 더 공부했습니다.
그리고 jquery도 조금씩 발담기 시작했습니다.
근데 보니까 jquery는 css먼저 공부한다음에 해야되겠더군요.
우선 html, js, css -> jquery -> react.js 순으로 공부해야겠습니다.
배운내용
> Table
> Attributes (a, href, target, title)
> div
<!DOCTYPE html>
<html lang = "ko">
<head>
<script type = "text/javascript" src = "https://code.jquery.com/jquery-3.6.0.min.js"></script>
<title>Javascript Practice</title>
<meta charset = "utf-8">
</head>
<body>
<div class = "temp"></div>
<a href = "https://naver.com" target = "_blank" title = "네이버!" >네이버로 고고씽!</a>
<script type = "text/javascript" src = "javascript3.js"></script>
</body>
</html>
배운내용
> String
> Number
> Navigator
> jquery
$(".temp").html("Hello world! Jquery!!").css("background-color", "blue");
굿굿 생각보다 재밌습니다.
jquery <- 뭔가 단어가 백준 세그먼트트리 알고리즘문제에 나올것같은 이름이라서 두려웠는데, 진짜 재밌습니다.
그리고 css에도 눈이떴습니다.
바로 css공부하러가야겠습니다.
굿!