Query中阻止事件冒泡方式

//event.stopPropagation();
$("#div1").mousedown(function(event){
event.stopPropagation();
})