JQuery 提供了两种方式来阻止事件冒泡。
方式一:event.stopPropagation();
        $("#div1").mousedown(function(event){
            event.stopPropagation();
        });
方式二:return false;
        $("#div1").mousedown(function(event){
            return false;
        });
原文:http://my.oschina.net/u/2264370/blog/502299