ウェブ学のすすめ

Study of Web Design & Programing

クリックでアラートを表示するJavaScript(function使用)【J05】

クリックでアラートを表示するJavaScript(function使用) - jsdo.it - share JavaScript, HTML5 and CSS

コード

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>J05</title>
<script type="text/javascript">
<!--
  function Img(){
    alert('海');
  }
//-->
</script>
<style type="text/css">
  img {
    cursor: pointer;
 }
</style>
</head>
<body>
<img src="sea.jpg" width="450" alt="海" onClick = "Img()">
</body>
</html>