我正在检查当前网址。如果我当前的子网站是根网站的第一个子网站具有属性。但我想让它不区分大小写,所以如果它是属性或属性它工作正常。
有没有更好的方法来实现这一点,这是我目前的做法..
<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>
答案 0 :(得分:1)
为了使其不区分大小写,您可能希望在第一步中将url和host更改为小写。
var url = window.location.href.toLowerCase();
var host = window.location.host.toLowerCase();
if (url.indexOf('http://' + host + '/property') != -1) {
$('.propertytitle').hide();
}
else {
$('propertytitle').show();
}