我试图在.click()
函数点击几个类之一时修改html的样式,但我不想为每个类编写一个函数。有没有办法把每个类作为选择器放在同一个函数中?如果有,那sintax怎么样?
以下是我的代码:
$(".back").click(function(){
console.log("widget closed");
if( !$("body").hasClass('widget-opened')){
$("html").css("overflow-y","auto");
}
});
除了.back
之外,最好再打两个班级(.laptop
和.close
)
答案 0 :(得分:0)
只需使用逗号分隔列表:
int input = 5;
var list = new List<int>();
for (int i = 1, j = input; i <= j; i *= 2, input >>= 1){
if ((input & 1) == 1)
list.Add(i);
}
答案 1 :(得分:0)
使用下面的逗号分隔多个选择器,以形成Multiple Selector
npm --version