0
我正在檢查當前網址。如果我當前的子網站從根站點的第一個子網站有屬性。但我想讓它不區分大小寫,以便如果它是屬性或屬性它工作正常。查找當前網址中的第一個子網站名稱
是否有這樣做,這是我目前的做法更好的辦法..
<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>