在 Javascript HTML 中使用带有部分地址的 if 语句

发布于 2024-12-02 12:32:57 字数 469 浏览 0 评论 0原文

尝试找出一种方法,使用 Javascript 来设置一个小 if-else 语句,仅使用 url 的一部分来确定它是否应该去某个地方。到目前为止我得到的是,

<script>
       if (url==example.com) {
       window.open('1stoption','1stoption');
       } else {
               window.open('2ndoption','2ndoption');
              }

到目前为止的问题是,如果是 exampleample.com/whatever 或类似的东西,则不算数。

感谢您的任何帮助。

*编辑谢谢大家,它有效,但我的问题措辞错误,它应该更多地沿着显示链接的路线,但根据网址将链接转到两个单独的页面。这个东西很有效,我正在尝试让它也按照我的方式工作。多谢。

Trying to figure out a way to use Javascript to set up a little if-else statement using only part of the url to determine if it should go somewhere or not. So far what I got is,

<script>
       if (url==example.com) {
       window.open('1stoption','1stoption');
       } else {
               window.open('2ndoption','2ndoption');
              }

The problems so far are that it doesnt count if its exampample.com/whatever or anything like that.

Thanks for any help.

*edit Thanks guys it worked but I worded my question wrong, it should be more along the lines of showing a link but having the link go to two separate pages depending on the url. This stuff works and I'm kicking it around to get it to work my way too. Thanks alot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情场扛把子 2024-12-09 12:32:57

不要进行精确匹配,而是在 url 字符串中搜索您想要接受的子字符串。

if(url.search(/example\.com/) > -1)
{
  //do 1st option here
}
else
{
 //do default case here
}

Instead of making an exact match search the url string for the sub-string that you want to accept.

if(url.search(/example\.com/) > -1)
{
  //do 1st option here
}
else
{
 //do default case here
}
清眉祭 2024-12-09 12:32:57

也许这就是你想要的?

<script type="text/javascript">
if (url.indexOf("example.com") != -1) {
    window.open('1stoption','1stoption');
} else {
    window.open('2ndoption','2ndoption');
}
</script>

如果在网址中的任何位置找到 example.com,这将打开窗口 first option

maybe this is what you want?

<script type="text/javascript">
if (url.indexOf("example.com") != -1) {
    window.open('1stoption','1stoption');
} else {
    window.open('2ndoption','2ndoption');
}
</script>

This will open window first option if it finds example.com anywhere within the url

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文