<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>입력한 값을 h1태그로 출력해보기</h1>
<input type="text" id="txt">
<button onclick="data()">h1태그 출력</button>
<div id="div1"></div>
<script>
let data =()=>{
let txt = document.querySelector('#txt');
console.log(txt.value);
let div = document.getElementById('div1');
div.innerHTML += '<h1>'+txt.value+'</h1>'
}
</script>
</body>
</html>
'자바 스크립트' 카테고리의 다른 글
Callback 함수 (0) | 2022.05.18 |
---|---|
스타일 및 이미지 실습 (0) | 2022.05.18 |
DOM 실습 (0) | 2022.05.17 |
DOM : Document Object Model (0) | 2022.05.17 |
객체(Object) (0) | 2022.05.13 |