반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- #자바스크립트#alert
- #자바스크립트#접속시간#시간
- #증감#연산자
- #getElementById#id
- #C언어#for#간단#예제
- #db#froup#by
- #db#join#inner#cross
- #C언어#사각형
- #C언어#타입#printf
- #select#from#distinct
- #db#where
- #클릭#숨기기#보이기
- #C언어#숫자비교#삼항연산자
- #자바스크립트#텍스트#알람#alert
- #alert#자바스크립트#radio#check
- #alert#자바스크립트#checkbox#alert
- #html#테이블#table
- #html#프레임
- #C언어#scanf#fflush
- #자바스크립트#만년달력#달력
- #자바스크립트#회원가입#유효성#검사
- #db#order#by
- #C언어#do#while#계산기#함수
- #C언어#switch#case#계산기#함수
- #C언어#if
- #자바스크립트#시계#실시간시계
- #db#데이터베이스#select
- #C언어#성적처리#점수#등급
- #jQuery#mouse#over
- #C언어#do#while#계산기
Archives
- Today
- Total
선택장애
제이쿼리(jQuery) - 배경색바꾸기 본문
반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(function(){
$('body').css('background-color', 'skyblue');
});
</script>
</head>
<div id="aa">aaaaa</div>
<div class="bb">bbbb</div>
<div name="cc">cccc</div>
<span name="dd">dddd</span>
</body>
</html>
반응형
'제이쿼리(jQuery)' 카테고리의 다른 글
제이쿼리(jQuery) - 이벤트들(click,blur,focusout,change,keyup) (0) | 2022.05.03 |
---|---|
setInterval - 값 바꿔주기 (0) | 2020.12.07 |
제이쿼리(jQuery) - 클릭시 숨기기/보이기 (0) | 2017.08.14 |
제이쿼리(jQuery) - mouseover (0) | 2017.08.14 |