再会。
HTML
<div id="Button"></div>
CSS
background: url("../images/play.png") left center no-repeat;
background-size: cover;
width: 100px;
height: 100px;
float: left;
cursor: pointer;
jQuery
$("#Button").on("click",function() {
$(this).css("background", 'url("../images/pause.png") left center no-repeat;');
});
但不幸的是,背景没有改变。为什么不呢?