onBeforePaste

ペースト前に時に発生するイベントです。onPasteイベントも同時に設定されている場合には先にonBeforePasteイベントが発生した後にonPasteイベントが発生します。Windows版Internet Explorer 5以降で利用できます。

構文

<タグ名 onBeforePaste="イベント発生時の処理">
オブジェクト.onbeforepaste = "イベント発生時の処理"

例文

<html>
 <head>
  <title>onBeforePaste</title>
  <script type="text/javascript"><!--
  window.onload = function() {
   document.getElementById("tField").onbeforepaste = function(){
    document.getElementById("result").innerHTML = "Before Paste";
   }
  }
  // --></script>
 </head>
 <body>
 <form>
  <input type="text" id="tField" value="Sample">
 </form>
 <div id="result"></div>
 </body>
</html>

関連記事

スポンサーリンク

Y!J-BSC/1.0 crawlerの挙動(ページ内のRSSを必ず読みに来る)

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る