このコードを使用してクリックすると、要素の背景を変更できます
$("#coolMenu li").click(function(){
$(this).css('background-image', 'url(images/li-bg2.png)');
});
onclick に関数を追加する必要がある場合はどうすればよいですか。
<ul id="coolMenu">
<li>
<a href='#' onclick="callMe(this)";>Click me</a>
</li>
</ul>
関数内の要素の背景を変更するには?
function callMe(obj)
{
//do something
//change element background other than using the above code
}