本文转载自: https://www.cnblogs.com/dingjing0518/p/6839593.html 作者:dingjing0518 转载请注明该声明。方式一:event.stopPropagation(); 1 $("#div1").mousedown(function(event){ 2 event.stopPropagation(); 3 }); 方式二:return false; 1 $("#div1").mousedown……