在当前 URL 中查找第一个子站点名称

Find the first sub site name in current URL

我正在检查电流 url。如果我当前的子站点,根站点的第一个子站点有 属性。但我想让它不区分大小写,这样无论是 属性 还是 属性 它都可以正常工作。

有没有更好的方法,这是我目前的方法..

<script type="text/javascript">
        $(document).ready(function () {
            var url = window.location.href;
            var host = window.location.host;

            if (url.indexOf('http://' + host + '/property') != -1) {
                $('.propertytitle').hide();
            }
            else if (url.indexOf('http://' + host + '/Property') != -1) {
                $('.propertytitle').hide();
            }
            else {
                $('propertytitle').show();
            }

        });
    </script>

为了使其不区分大小写,您可能需要在第一步中将 url 和主机都更改为小写。

var url = window.location.href.toLowerCase();
var host = window.location.host.toLowerCase();

if (url.indexOf('http://' + host + '/property') != -1) {
         $('.propertytitle').hide();
}
else {
         $('propertytitle').show();
}