1

場所hrefのさまざまな条件にswitchcaseステートメントを使用したいと考えています。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
}
4

1 に答える 1

4
var _url = window.location.href;
swith(true){
    case /red/.test(_url):
    //do red
    break;
    case /blue/.test(_url):
    //do blue
    break;
    case /yellow/.test(_url):
      // do yellow
    break;
 }
于 2013-02-26T02:05:02.240 に答える