如果 url 匹配某些条件,则重定向用户

如果 url 包含某些条件,我希望用户被重定向到新网页。我似乎无法让 OR 条件起作用。有什么想法吗?


if (

    document.location.href.indexOf("https://www.oct.ca/") > -1 &&

    document.location.href.indexOf("professionally_speaking") > -1 &&

    document.location.href.includes("2019-03" || "2018-12")

  ) {

    window.location = window.location.href.replace("https://www.oct.ca/", "http://professionallyspeaking.oct.ca/")


  }


慕标5832272
浏览 176回答 1
1回答

芜湖不芜

你不能那样做 - 添加另一个条件:&& (document.location.href.includes("2019-03") || document.location.href.includes("2018-12"))
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript