jquery如何实现互斥事件,点击一个按钮只有当前(this)类才有反应?

 /*a的互斥事件*/
  $(".RightContentImg").bind("click",function(){
    $(".RightContentImgAdd").removeClass(".RightContentImgAdd");
    $(this).addClass(".RightContentImgAdd");
  })

http://www.alonely.com.cn/jQuery/20160911/34042.html

看下这里面的例子:http://blog.csdn.net/chelen_jak/article/details/23108277