-1

假设我有一个虚拟网站 URL:http://company.com/something

我需要获取路径:/something 并使用 switch case 重定向到使用 javascript 的新 URL。

有人可以指导我吗?

var URL;
var url_param = location.pathname;

switch(url_param) {
     case "/how-to-do-this":
          URL = '/your-new-destination/';

     default:
          URL: '/thankyou/';

console.log("your new URL is: " + URL);

谢谢。

4

1 回答 1

0

我假设您正在使用 Javascript

var URL;

switch(window.location.pathname) {
     case "/how-to-do-this":
          URL = '/your-new-destination/';

     default:
          URL= '/thankyou/';
}
console.log("your new URL is: " + URL);
于 2013-09-24T15:26:54.000 回答