HTML樣式如下<div> <button class="diyperiod" disabled="true">周期</button> <button class="diyperiod" id="6h">6小時(shí)</button> </div> <div> <button class="diyperiod" id="3h">3小時(shí)</button> <button class="diyperiod" id="7h">7小時(shí)</button> </div> <div> <button class="diyperiod" id="4h">4小時(shí)</button> <button class="diyperiod" id="8h">8小時(shí)</button> </div> <div> <button class="diyperiod" id="5h">5小時(shí)</button> <button class="diyperiod" id="9h">9小時(shí)</button> </div> </div>現(xiàn)在用以下的代碼只能實(shí)現(xiàn)同一個(gè)div下的兩個(gè)button不能同時(shí)激活 想要所有的button只有一個(gè)能激活的要如何用選擇器?$$(".diyperiod").on("click",function(){ $$(this).toggleClass("activebtn").siblings().removeClass("activebtn"); });
這樣的button群如何用選擇器實(shí)現(xiàn)只有一個(gè)button能激活的效果
搖曳的薔薇
2019-02-12 14:12:22