我希望在位置 href 中针对我的不同条件使用 switch case 语句。我试图避免继续写 if 语句
if (/red/.test(self.location.href)){
//do this red
}
if (/blue/.test(self.location.href)){
//do this blue
}
if (/yello/.test(self.location.href)){
//do this yellow
}
我希望在位置 href 中针对我的不同条件使用 switch case 语句。我试图避免继续写 if 语句
if (/red/.test(self.location.href)){
//do this red
}
if (/blue/.test(self.location.href)){
//do this blue
}
if (/yello/.test(self.location.href)){
//do this yellow
}