ksa, еще можно так:
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<style>.on{background-color:green;}</style>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<script>
$(function (){
$('li').click( { p: 0 }, function(e) {
if (e.data.p == this) {
alert('Action!');
return;
}
if (e.data.p) e.data.p.className = '';
this.className = 'on';
e.data.p = this;
});
});
</script>