Prototype-element-observe

提供:Dev Guides
2020年6月23日 (火) 02:07時点におけるMaintenance script (トーク | 投稿記録)による版 (Imported from text file)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

プロトタイプ-observe()メソッド

このメソッドは、要素にイベントハンドラを登録し、要素を返します。

構文

element.observe(eventName, handler[, useCapture = false]);

戻り値

HTML要素。

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>

      <script>
         function RegisterFunction() {
            $('test').observe('click', function(event) {
               alert(Event.element(event).innerHTML);
            });
         }
      </script>
   </head>

   <body onload = "RegisterFunction();">
      <p id = "test">Click me to see the result.</p>
   </body>
</html>

出力