慕森王
<style>nav{width: 100%;height: 100px;background: violet;}.one{width: 30px;height: 30px;background: red;}.two{width: 30px;height: 30px;background: orange;}</style></head><body><nav></nav><div class="one"></div><div class="two"></div></body><script type="text/javascript" src="js/jquery-2.1.4.js" ></script><script>$("div").click(function(){var color=$(this).css("background");$("nav").css("background",color)})</script>