<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src ="../js/jquery-3.2.1.js"></script>
</head>
<script>
// 결과가 나오지 않는다
// body 에 붙이는게 없기 때문에
$(function(){
$('<h1></h1>').html('Hello World..!');
//<h1>Hello World ..! </h1>
})
</script>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src ="../js/jquery-3.2.1.js"></script>
</head>
<script>
//.appendTo('body') 를 하면 결과가 출력된다.
$(function(){
$('<h1></h1>').html('Hello World..!')
.appendTo('body');
//<h1>Hello World ..! </h1>
})
</script>
<body>
</body>
</html>
' sundries' 카테고리의 다른 글
체크박스 선택 시 5초뒤 알람창으로 출력 (0) | 2018.01.13 |
---|---|
3-18 empty() remove() (0) | 2018.01.12 |
3-14 html(메서드) (0) | 2018.01.12 |
3-13 text() 노드 (0) | 2018.01.12 |
3-11 css 메서드 콜백 함수 (0) | 2018.01.12 |