JavaScript-如何检查具有特定域名的URL?

问题描述 投票:0回答:1

我将如何使用JavaScript查找特定的域名,如果要查找的域名返回true,否则返回false,如果不是我要查找的URL,则返回false。在我的示例中,用户在输入框中键入URL,JavaScript检查它是否为特定域,例如https://example.com,然后将用户重定向到该页面。如果他们键入不带https://example.com的另一个URL,JavaScript将返回false并显示错误消息。如果用户键入URL https://example.com/join/1234,我只想检查主域。我到目前为止的代码如下。我已经尝试过使用正则表达式,但是我不知道如何才能只检查域名-> https://example.com

 <div class="col-md-12 col-lg-5"><button class="btn btn-primary btn-lg" id = "start-call" data-aos="zoom-in" data-aos-duration="900" data-aos-delay="2000" type="button" style="margin: 160px;width: 135px;" onclick = "goToCall()" >Start Call</button></div>


 function isDomainURL(str){
  regexp =  /^(?:(?:https?|ftp):\/\/)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:\/\S*)?$/;
    if (regexp.test(str)){

    return true;

    }else{

    return false:

    }

 }

 if (isDomainURL(document.getElementById('input-01').value) == true)
    {
        window.location = document.getElementById('input-01').value;
    }
    else
    {
        swal({
            title: "Invalid URL",
            text: "Thats was an invalid DropCall URL.",
            icon: "error",
        });
    }
javascript url redirect
1个回答
0
投票

我建议为此目的使用URL对象。

const url = new URL('https://example.com/my-path');

console.log(url.host);   

使用正则表达式更简单。

© www.soinside.com 2019 - 2024. All rights reserved.