<!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"); //속성여러개안하고 하나만할땐 걍 괄호안에 쓰면된다.
});
'공부하는 징뉴 > 퍼블' 카테고리의 다른 글
제이쿼리_인접선택자 (0) | 2019.01.14 |
---|---|
20190114_click (0) | 2019.01.14 |
array (0) | 2019.01.11 |
시계 (0) | 2019.01.11 |
자바스크립트..몇일차인지모르게따..math 함수! (0) | 2019.01.11 |