<button>按钮</button>
<button>按钮1</button>
点击按钮 按钮1变成禁用状态,再次点击按钮时按钮1还原可用
高洛峰2017-04-10 16:05:02
//css
.red{
background-color:red;
}
//html
<button>按钮</button>
<button id="btn1">按钮1</button>
//js
$("#btn1").on("click",function(){
if( $(this).hasClass("red")){
$(this).removeClass("red");
}else{
$(this).addClass("red");
}
})
我的做法就是点击btn时判断是否有red的类有的话就删除这个类这样就显示原来的背景了没有的话就加上这个类这样就显示这个类的背景了