1 $("#div1").mousedown(function(event){ 2 event.stopPropagation(); 3 });
1 $("#div1").mousedown(function(event){ 2 return false; 3 });
JQuery中阻止事件冒泡方式及其区别
原文:http://www.cnblogs.com/dingjing0518/p/6839593.html