| event.isPropagationStopped() | ใช้ตรวจสอบว่า คำสั่ง stopPropagation() ถูกใช้งานอยู่หรือไม่ |
|---|
syntax:event.isPropagationStopped()
return type:boolean
content:ใช้ตรวจสอบว่า คำสั่ง stopPropagation() ถูกใช้งานอยู่หรือไม่
example:$("a").click( function ( event ) { alert( event.isPropagationStopped() ); // false event.stopPropagation(); alert( event.isPropagationStopped() ); // true });