mounted里
$("#btnID").click(function(event) { $("#divID").toggle(); $(document).one("click", function() { $("#divID").hide(); }); event.stopPropagation(); }); $("#divID").click(function(event) { event.stopPropagation(); });