摘要: JQuery 提供了两种方式来阻止事件冒泡。方式一:event.stopPropagation(); $("#div1").mousedown(function(event){ event.stopPropagation(); });方式二:return false; $("#div1")... 阅读全文
posted @ 2015-09-22 12:55 zhengyan_web 阅读(128) 评论(0) 推荐(0) 编辑