$("a").click(function(event){ event.stopPropagation(); alert("阻止了事件的冒泡"); });
什么叫事件“冒泡”,及jquery里阻止事件冒泡的方法和实例