Prototype-element-stopobserving

提供:Dev Guides
移動先:案内検索

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

このメソッドはハンドラーの登録を解除し、要素を返します。

構文

element.stopObserving(eventName, handler);

戻り値

HTML要素を返します。

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

      <script>
         function handler(event) {
            alert(Event.element(event).innerHTML);
         }
         function RegisterFunction() {
            $('test').observe('click', handler );
            alert("Registering the handler");
         }
         function UnRegister() {
            $('test').stopObserving('click', handler);
            alert("Now unregistering the handler");
         }
      </script>
   </head>

   <body onload = "RegisterFunction();">
      <p id = "test">Click me to see the result.</p>
      <br/>
      <p>Click the button to unregister the handler.</p>
      <input type = "button" value = "UnReg" onclick = "UnRegister();"/>
   </body>
</html>

出力