공부하는 징뉴/퍼블

20190114_jquery-css

J.Riley 2019. 1. 14. 19:57

<!doctype html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<title>Document</title>

<script src="http://code.jquery.com/jquery-3.1.1.js"></script>

<script>

$(function(){

$("#box").css({

"width":"600px",

"height":"600px",

"background-color":"blue"

});

});

</script>

</head>

<body>

<div id="box"></div>

</body>

</html>


제이쿼리로 바로 css먹여줌




*

$(function(){

$("#box").css({

"width":"600px",

"height":"600px",

"background-color":"blue"

});

$("#box2").css("background-color","blue");  //속성여러개안하고 하나만할땐 걍 괄호안에 쓰면된다.

});