f the article
Javascript HTML DOM onclick Event
<body>
<h1>The onclick Event</h1>
<p>The onclic... L = "Au revoir, les enfants!"
}
</script>
</body>
Definition and Usage
온클릭 이벤트 (onclick event)는 사용자가 한 요소 위에서 클릭할 때 발생합니다.
Syntax
HTML에서:
<body>
<P>This example demonstrates how to assign ... nerHTML= " YOU CLICKED ME!";
}
</script>
</body>
JavaScript에서
<body>
<p>This example uses
요소는 type 속성에 따라 여러 가지 방법으로 표시될 수 있습니다.
Example
<body>
<h2>The input Element</h2>
<form action="/... <input type="submit" value="submit">
</form>
</body>
type 속성의 모든 다른 값은 다음 챕터인 HTML Input Types에서 다룹니... nt
<select> 요소는 드롭다운 목록(drop-down list)을 정의합니다.
<body>
<h2>The select Element</h2>
<p>The select ... </select>
<input type="submit">
</form>
</body>
<option> 요소는 선택할 수 있는 옵션을 정의합니다.
기본적으로, 드롭 다운
height: auto;
}
</style>
</head>
<body>
<img src="img_chania.jpg" width="460" h... er window to see how the imgae will scale.</p>
</body>
</html>
위의 예에서 이미지는 원래 크기보다 크게 확대될 수 있습니다.
대부분... height: auto;
}
</style>
</head>
<body>
<img src="img_chania.jpg" width="460" h... le
when the width is less than 460px.</p>
</body>
</html>
Add an Image to The Example Web Page
<
xample
문서에서 class="example"를 가진 모든 요소를 가져옵니다.
<body>
<h2 class="example">A heading with class="exa... groundColor = "red";
}
}
</script>
</body>
Definition and Usage
querySelectorAll() 메서드는 지정... <p> 요소를 가져오고, 첫 번째 <p> 요소(index 0)의 배경색을 설정합니다.
<body>
<p>This is a p element.</p> <!-- red 배경색 적용됨 ... lor of the first <p> element
}
</script>
</body>
Example
문서에서 class="example"인 모든 <p> 요소를 가져오고,
(호출)될 때 실행됩니다.
<!DOCTYPE html>
<html lang="en">
<body>
<h2>JavaScript Functions</h2>
<p>
This... (a, b) {
return a * b;
}
</script>
</body>
</html>
세미콜론은 실행 가능한 JavaScript 스테이트먼트를 구분하는 데 ... 수에 저장할 수 있습니다:
<!DOCTYPE html>
<html lang="en">
<body>
<p>A function can be stored in a variable:</p... ElementById("demo").innerHTML = x;
</script>
</body>
</html>
함수 표현식이 변수에 저장되면, 변수를 함수로 사용할 수 있습니다:
bs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<h2>Finding HTML Elements by Id</h2>
<p id="... + myElements[0].innerHTML);
});
</script>
</body>
</html>
JavaScript
<!DOCTYPE html>
<html lang="en">
<body>
<h2>Finding HTML Elements by Id</h2>
<p id="... agraph is: " + myElement.innerHTML;
</script>
</body>
</html>
Finding HTML Elements by Tag Name
모든 <p