javascriptはイベントの泡出しとブラウザーのデフォルト行為を阻止します。


1.事件の泡立ちを阻止し、捕獲型イベントのトリガメカニズムにする。

function stopBubble(e) { 
//         ,      IE    
if ( e && e.stopPropagation ) 
  //     W3C stopPropagation()   
  e.stopPropagation(); 
else
  //  ,      IE           
  window.event.cancelBubble = true; 
}
2.ボタンを押した後、ボタンがHTMLテキストボックスのオブジェクトに続きますか?

 //           
function stopDefault( e ) { 
  //         (W3C) 
  if ( e && e.preventDefault ) 
    e.preventDefault(); 
  //IE              
  else
    window.event.returnValue = false; 
  return false; 
}

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>    </title>
<script language="javascript" type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function()
{
$('div.c1').click(function(e){alert('   div');});
$('div.c2').click(function(e){alert('   div');stopBubble(e);});
$(document).click(function(e){alert('   document');});
$('#txt1').val('123');
$('#txt1').click(function(e){stopBubble(e);});
$('#txt1').keydown(function(e){stopDefault(e);alert('      '+e.keyCode); });
})
function stopBubble(e) { 
//         ,      IE    
  if ( e && e.stopPropagation ) 
  //     W3C stopPropagation()   
  e.stopPropagation(); 
   else 
  //  ,      IE           
  window.event.cancelBubble = true; 
} 
//           
function stopDefault( e ) { 
  //         (W3C) 
  if ( e && e.preventDefault ) 
    e.preventDefault(); 
  //IE              
  else 
    window.event.returnValue = false; 
  return false; 
}
</script>
<style type="text/css">
body{
font-size:14px;
  }
}
.c1{
  font-family:"Arial Unicode MS"
  }
.c2{
  font-family:helvetica,simsun,arial,clean
  }
</style>
</head>
<body>
<div class="c1">     ,     C1,            .</div><hr/>
<div class="c2">     ,     C2,            .</div><hr/>
<div><input id="txt1" name="Text1" type="text" /></div><hr/>
</body>
</html>
以上が本文の全部です。本文の内容は皆さんの学習や仕事に一定の助けをもたらしてくれると同時に、私達を応援してください。