テックアイエスガイド エディター
無料プログラミング体験会の予約
実行
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript HTML Events</h1>
<h2>The onmouseover and onmouseout Attributes</h2>
<h1 onmouseover="style.color='red'" onmouseout="st
yle.color='black'">Mouse over this text</h1>
</body>
</html>